<?xml version='1.0'?>
<xsl:stylesheet version="1.0" 
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
	xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
	xmlns:rss="http://purl.org/rss/1.0/"
>

<xsl:template match="rss/channel">
	<table border="0" cellpadding="1" cellspacing="0" class="ywtTABLE">
	<tr class="ywtTRH">
		<td class="ywtTDH" colspan="2" bgcolor="#bbbbbb"><center>
			<font size="1">
			<xsl:element name="a">
				<xsl:attribute name="href"><xsl:value-of select="link" /></xsl:attribute>
				<xsl:value-of select="description"/>
			</xsl:element>
			</font>
		</center></td>
	</tr>
	<xsl:for-each select="item">
		<tr class="ywtTR">
			<td valign="top" class="ywtTDB">
				<font size="1">
				<xsl:text disable-output-escaping="yes">&amp;#149;</xsl:text>
				</font>
			</td>
			<td valign="top" class="ywtTD">
				<font size="1">
				<xsl:element name="a">
					<xsl:attribute name="href"><xsl:value-of select="link" /></xsl:attribute>
					<xsl:value-of select="title" disable-output-escaping="yes"/>
				</xsl:element>
				</font>
			</td>
		</tr>
	</xsl:for-each>
	</table>
</xsl:template>

<xsl:template match="/">
	<xsl:apply-templates select="rss/channel" />
</xsl:template>

</xsl:stylesheet>





