<xsl:stylesheet version = '1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>
<xsl:template match="/">
<html>
<body>
<h3 align="center"><font color="gray" face="arial" size="4"><xsl:value-of select="//title" /></font></h3>
 
<table border="1" align="center" cellpadding="0">
	<xsl:for-each select="rss/channel/item">
	<tr><td>
	<table border="0" cellpadding="9" cellspacing="0">
	<tr><td colspan="2">
	<font face="arial" size="3" style="font-weight:bold">
	<a href="{link}"><xsl:value-of select="title" disable-output-escaping="yes" /></a>
	</font>
	</td></tr>
	<tr><td colspan="2">
	<font color="gray" face="arial" size="2" style="font-weight:bold"><xsl:value-of select="pubDate" /></font>
	<br />
	</td></tr>
	<tr>
	<td valign="top">
	<font face="arial" color="blue" size="3" style="text-align:justify"><xsl:value-of select="description" disable-output-escaping="yes" /></font>
	</td></tr></table>
	</td></tr>
	</xsl:for-each>
</table>
<h6 align="center"><xsl:value-of select="//copyright" /></h6>
</body>
</html>
</xsl:template>
</xsl:stylesheet>