<?xml version='1.0'?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/">

<html>
<body>
<table width="90%" border="0" cellspacing="3">
<xsl:for-each select="tutorial-menu/subject">
<tr><td colspan="3" bgcolor="#336699">
<font color="white" face="arial"><b><i>
<xsl:value-of select="subject-name"/></i></b>
</font></td></tr>
      <xsl:for-each select="topic"   order-by="+ topic-name">
	<tr><td width="2%"></td>
         <td colspan="2" bgcolor="#CCCCCC">
          <font size="2" face="arial"><b>
	   <xsl:value-of select="topic-name"/>
          </b></font></td></tr>
      <xsl:for-each select="tutorial">
	<tr><td width="2%"></td><td width="5%">
         </td><td>
          <font size="2" face="arial"><b>

			<A>
  			<xsl:attribute name="href">
  			<xsl:value-of select="link"/>
			</xsl:attribute>
			<xsl:value-of select="title"/>
			</A>

		 </b><i><xsl:value-of select="update-time"/></i>
                </font></td></tr>

	<tr><td width="2%"></td><td width="5%"></td><td>	
	<table border="0">

      		<xsl:for-each select="sections">
			<tr><td width="5%"></td><td>
                        <font size="1" face="arial">

			<A>
  			<xsl:attribute name="href">
  			<xsl:value-of select="link"/>
			</xsl:attribute>
			<xsl:value-of select="section"/>
			</A>

			</font></td></tr>
      		</xsl:for-each>

	</table></td></tr>
      </xsl:for-each>
      </xsl:for-each>
      </xsl:for-each>

</table>

</body>
</html>

</xsl:template>
</xsl:stylesheet> 
