<xsl:stylesheet
     version="1.0"
     xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
     <xsl:output method="xml" />
     <xsl:template match="rss/channel">
     <html>
          <head>
               <title><xsl:value-of select="title" /></title>
               <style>
                    .mainTitle
                    {
                         font-family:  Arial;
                         font-size:  14pt;
                         font-weight:  bold;
                         text-align:  center;
						 color:#999999
                    }
                    .subTitle
                    {
                         font-family:  Arial;
                         font-size:  12pt;
                         font-weight:  bold;
                    }
                    .publishDate
                    {
                         color:#999999;
                         font-family:  Arial;
                         font-size:  10pt;
						 font-weight:bold;
                    }
					
					.mainText
					{
						font-size:10pt;
						font-family:Arial;
						color:Blue;
					}                    
               </style>
          </head>     
          <body>
               <xsl:apply-templates select="title" />
               <table border="1">
               <xsl:apply-templates select="item" />
			   </table>
          </body>
     </html>
     </xsl:template>

     <xsl:template match="title">
          <div class="mainTitle">
               <xsl:value-of select="text()" />
          </div>
          <br />
     </xsl:template>
     
	 
	<xsl:template match="item">
	<tr><td>
		   	<div class="subTitle">
				<a href ="{link}"><xsl:value-of select="title" /></a>
		   	</div>
		   	<br />
		   	<div class="publishDate">
				<xsl:value-of select="pubDate" />
		   	</div>
		   	<br />
		   	<div class="mainText">
				<xsl:value-of select="description" disable-output-escaping="yes" />
			</div>
          <br />
	</td></tr>
	</xsl:template>
</xsl:stylesheet>