instructions
<!-- Format instructions -->
<xsl:template match="Instructions">
<H4>Instructions</H4> <OL>
<xsl:apply-templates select="Step"/>
</OL>
</xsl:template>
<xsl:template match="Step">
<LI>
<xsl:value-of select="."/>
</LI>
</xsl:template>