<?xml version='1.0'?>

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

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

<xsl:template match="POEM">
    <HTML>
    <BODY BGCOLOR="#FFFFCC">
        <xsl:apply-templates/>
    </BODY>
    </HTML>
</xsl:template>

<xsl:template match="TITLE">
    <H1><FONT COLOR="Green">
        <xsl:value-of/>
    </FONT></H1>
</xsl:template>

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

<xsl:template match="FIRSTNAME">
    <xsl:value-of/>
</xsl:template>

<xsl:template match="LASTNAME">
    <xsl:value-of/><BR/>
</xsl:template>

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

<xsl:template match="LINE">
    <xsl:value-of/><BR/>
</xsl:template>

<xsl:template match="LINEIN">
    <DD/><xsl:value-of/><BR/>
</xsl:template>

</xsl:stylesheet>