<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/"> 
<html>
<body>
<xsl:for-each select="//channel">
	<div align="center" style="font-size:14pt;font-family:Arial;color:RGB(122,122,120)"><b><xsl:value-of select="title"/></b></div><br />
</xsl:for-each>
<table border="1">
<xsl:for-each select="//item">
	
		<tr>
		<td>
			<table>
				<tr>
					<td>
						<a>
							<xsl:attribute name="href">
								<xsl:value-of select="link" />
							</xsl:attribute>
							<div style="font-size:12pt;font-family:Arial;color:Dark Blue"><b><xsl:value-of select="title"/></b></div>
						</a>
					</td>
				</tr>
				<tr>
					<td><br />
						<div style="font-size:10pt;font-family:Arial;color:RGB(122,122,120)"><b><xsl:value-of select="pubDate"/></b></div><br />
					</td>
				</tr>
				<tr>
					<td>
						<div style="font-size:12pt;font-family:Arial;color:Blue"><xsl:value-of select="description" disable-output-escaping="yes" /></div>
					</td>
				</tr>
			</table>
		</td>
		</tr>
	
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
