<?xml version="1.0" ?> 
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">

  <xsl:template match="/">
    <HTML><HEAD><STYLE TYPE="text/css">
	.box { color: "black";
	       background-color: "white";
	}
	A.title:link { color: "white";
	       background-color: "black";
		   font-family: "Helvetica, Arial, sansserif";
		   font-size: 12";
		   font-weight: "bold";
	}
	A.item:link { color: "black";
	       background-color: "white";
		   font-family: "Times, serif";
		   font-size: 10;
		   font-weight: "italic";
	}
	A.title:hover { color: "white"; background-color: "black"
	}
	A.item:hover { color: "white"; background-color: "black"
	}
	</STYLE></HEAD><BODY><TABLE CLASS="box" BORDER="3">
      <xsl:apply-templates/>
    </TABLE></BODY></HTML>
  </xsl:template>

  <xsl:template match="rss">
    <xsl:apply-templates/>
  </xsl:template>

  <xsl:template match="channel">
    <TR><TH><A CLASS="title">
      <xsl:attribute name="HREF">
        <xsl:value-of select="link"/>
      </xsl:attribute>
      <xsl:value-of select="title"/>
      </A></TH></TR>
      <xsl:apply-templates/>
  </xsl:template>

  <xsl:template match="item">
    <TR><TD><A CLASS="item">
      <xsl:attribute name="HREF">
        <xsl:value-of select="link"/>
      </xsl:attribute>
      <xsl:value-of select="title"/>
      </A></TD></TR>
      <xsl:apply-templates/>
  </xsl:template>

  <xsl:template match="text()"/>

</xsl:stylesheet>
