<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/">
<xsl:apply-templates
select="//employee" />
</xsl:template>
<xsl:template match="employee">
<P />
<xsl:apply-templates
select="salary" />
</xsl:template>
<xsl:template match="salary">
<SPAN style="font-size:16pt">
<xsl:value-of
select="@payperiod" />
</SPAN>
<br />
</xsl:template>
</xsl:stylesheet>