<?xml version="1.0" ?> 
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> 
<xsl:output method="html"/> 
<xsl:template match="/rss/channel"> 
<html> 
<head> 
<title><xsl:value-of select="title"/></title> 
<style> 
h1, h1 a {background:#001850;color:#FFFFFF;font:bold large/normal tahoma,arial,sans-serif;margin:0;padding:1ex;text-align:left} 
dd {font:0.8em arial,sans-serif;margin:0.5ex 10px 0.5ex 50px;text-align:left} 
dt {background:#EEEEEE;font:0.8em arial,sans-serif;margin:0 10px 0 10px;text-align:left;} 
.gen { font-size : 12px; } 
.genmed { font-size : 11px; } 
.gensmall { font-size : 10px; } 
.gen,.genmed,.gensmall { color : #000000; } 
a.gen,a.genmed,a.gensmall { color: #006699; text-decoration: none; } 
a.gen:hover,a.genmed:hover,a.gensmall:hover   { color: #DD6900; text-decoration: underline; } 
.code { 
   font-family: Courier, 'Courier New', sans-serif; font-size: 11px; color: #006600; 
   background-color: #FAFAFA; border: #D1D7DC; border-style: solid; 
   border-left-width: 1px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px 
} 
.quote { 
   font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; color: #444444; line-height: 125%; 
   background-color: #FAFAFA; border: #D1D7DC; border-style: solid; 
   border-left-width: 1px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px 
} 
.genmed { 
  font-size: 0.8em; 
} 
.off { font-size: 10px; color: #999999 } 
</style> 
</head> 
<body> 
<h1><a><xsl:attribute name="href"><xsl:value-of select="link"/></xsl:attribute> 
<xsl:value-of select="title"/></a></h1> 
<!--LiveInternet counter--><script language="JavaScript"><!--
document.write('<img src=http://counter.yadro.ru/hit?r'+
escape(document.referrer)+((typeof(screen)=='undefined')?'':
';s'+screen.width+'*'+screen.height+'*'+(screen.colorDepth?
screen.colorDepth:screen.pixelDepth))+';u'+escape(document.URL)+
';'+Math.random()+
' width=1 height=1 alt="">')//--></script><!--/LiveInternet-->
<p><xsl:value-of select="description" disable-output-escaping = "yes"/></p> 
<dl> 
<xsl:for-each select="item"> 
    <hr/>
    <dt> 
        <a><xsl:attribute name="href"><xsl:value-of select="link"/></xsl:attribute> 
        <xsl:value-of select="title" disable-output-escaping = "yes"/></a> 
    </dt> 
    <dd> 
        <xsl:value-of select="description" disable-output-escaping = "yes"/><br /><span> 
        <xsl:attribute name="style">font-size:0.8em;color:#FF6600</xsl:attribute> 
        <xsl:value-of select="pubDate"/></span> 
    </dd> 
</xsl:for-each></dl> 
<hr /><p class="off"><xsl:text>This text generated by XSLT from RSS Feed</xsl:text><br /><xsl:value-of select="copyright"/></p> 
</body> 
</html> 
</xsl:template> 
</xsl:stylesheet>
