<?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%" >
<tr><td valign="top" class="tsnewstitle"  >
<a>
<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>
<xsl:text disable-output-escaping="yes">&lt;br&gt;</xsl:text>
<xsl:text disable-output-escaping="yes">&lt;font size=-2&gt;</xsl:text>
<xsl:value-of select="*[local-name()='channel']/*[local-name()='lastBuildDate']"/>
<xsl:text disable-output-escaping="yes">&lt;/font&gt;</xsl:text>
</td></tr><tr><td valign="top" class="tsnewsheadlines" >
<xsl:for-each select="//*[local-name()='item']">
  <a>
  <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>
  <table border="0" width="100%" >
  <tr><td valign="top" class="tsnewsdetails"  >
  <xsl:value-of select="*[local-name()='description']" disable-output-escaping="yes"/>
  <a>
  <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:text disable-output-escaping="yes"> ...more</xsl:text>
  </a>
  <xsl:text disable-output-escaping="yes">&lt;br&gt;</xsl:text>
  </td></tr></table>
</xsl:for-each>
</td></tr>
</table>
</xsl:template>
<xsl:template match="/">
<xsl:apply-templates/>
</xsl:template>
</xsl:stylesheet>








