
<?xml version="1.0" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" omit-xml-declaration="yes" indent="yes"/>
<xsl:template match="*">
<table border="0" width="100%"  align="center">
<tr><td valign="top" align="center" class="headlines" style="font-size:10px">
<a>
<xsl:attribute name="class">
<xsl:text>first</xsl:text>
</xsl:attribute>
<xsl:attribute name="href">
<xsl:value-of select="*[local-name()='channel']/*[local-name()='link']"/>
</xsl:attribute>
<xsl:attribute name="target">
<xsl:text>top</xsl:text>
</xsl:attribute>
<xsl:value-of select="*[local-name()='channel']/*[local-name()='title']"/>
</a>
</td></tr><tr><td valign="top" align="center">
<table border="0"><tr><td align="left" class="headlines" style="font-size:10px">
<ul>
<xsl:for-each select="//*[local-name()='item']">
<xsl:if test="position() &lt; 11">
<li>
<a class="first">
<xsl:attribute name="href">
<xsl:value-of select="*[local-name()='link']"/>
</xsl:attribute>
<xsl:attribute name="target">
<xsl:text>top</xsl:text>
</xsl:attribute>
<xsl:value-of select="*[local-name()='title']"/>
</a>
</li>
</xsl:if>
</xsl:for-each>
</ul>
</td></tr></table></td></tr>
</table>
</xsl:template>
<xsl:template match="/">
<xsl:apply-templates/>
</xsl:template>
</xsl:stylesheet>