<?xml version='1.0'?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/">
 <html>
  <body bgcolor="yellow">
   <h1>Check Book Display</h1>
   <center>
   <table border="2" bgcolor="tan">
   <tr>
    <th>-Check Number-</th>
    <th>-Date-</th>
    <th>-Payee-</th>
    <th>-Amount-</th>
   </tr>
   <xsl:for-each select="checkbook/check[@id > 100]"> 
   <tr>
   <td><center><xsl:value-of select = "@id" /></center></td>
   <td><xsl:value-of select = "date" /></td>
   <td><xsl:value-of select = "payee" /></td>
   <td><center>$<xsl:value-of select = "amount" /></center></td>
   </tr>
   </xsl:for-each>
   </table>
   </center>
  </body>
 </html>
 </xsl:template>
</xsl:stylesheet>
