<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:apply-templates select="picture" />
     </xsl:template>
     
     <xsl:template match="salary">
          <SPAN style="font-size:18pt">
               <xsl:value-of select="../@id"/>
          </SPAN><br />
          <SPAN style="font-size:16pt">
               <xsl:value-of select="@payperiod" />
          </SPAN><br />
     </xsl:template>

     <xsl:template match="picture">
          <img>
               <xsl:attribute name="src">
               <xsl:value-of select="./@filename"/>
               </xsl:attribute>
          </img>
     </xsl:template>
</xsl:stylesheet>