<?xml version="1.0" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">

 <xsl:template match="/">
  <HTML>
   <BODY>
    <xsl:for-each select="document">
     <xsl:apply-templates/>
    </xsl:for-each>
   </BODY>
  </HTML>
 </xsl:template>

 <xsl:template match="info">
  <TABLE BORDER="1" WIDTH="100%" CELLPADDING="5"
   CELLSPACING="0" BGCOLOR="navajowhite">
   <xsl:apply-templates/>
  </TABLE>
 </xsl:template>

 <xsl:template match="title">
  <TR><TD ALIGN="top">Title:</TD>
  <TD><B><xsl:apply-templates/></B></TD></TR>
 </xsl:template>
  
 <xsl:template match="author">
  <TR><TD ALIGN="top">Author:</TD>
  <TD><B><xsl:apply-templates/></B></TD></TR>
 </xsl:template>

 <xsl:template match="intro">
  <TR><TD VALIGN="top">Introduction:</TD><TD><I><xsl:apply-templates/></I></TD></TR>
 </xsl:template>

 <xsl:template match="list">
  <UL><xsl:apply-templates/></UL>
 </xsl:template>

 <xsl:template match="item">
  <LI><xsl:apply-templates/></LI>
 </xsl:template>

 <xsl:template match="para">
  <P><xsl:apply-templates/></P>
 </xsl:template>

 <xsl:template
 match="emph"><B><xsl:apply-templates/></B></xsl:template>
  
 <xsl:template match="text()"><xsl:value-of/></xsl:template>

</xsl:stylesheet>

