<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<!-- NOTE: TO KEEP THIS FEATURE CURRENT, UPDATE THE CASE INDEX DATABASE FILE: CASEINDEX.XML -->
<xsl:template match="/">
  <html>
  <body>
    <p align="center" style="font-family:'Arial,sans-serif';font-size:'12pt'"><b><a name="top"></a>Case Digest by Agency</b></p>
    <table align="center" border="0" cellpadding="8" cellspacing="0" style="font-family:'Arial,sans-serif';font-size:'10pt';border:'1px black solid'">
      <tr bgcolor="#00009C" style="color:'white'">
        <th align="left" style="border-bottom:1px black solid">Agency</th>
	<th align="left" style="border-bottom:1px black solid">Project</th>
        <th align="left" style="border-bottom:1px black solid">Issue</th>
      </tr>
      <xsl:for-each select="casedigest/issue">
      <xsl:sort select="agency"/>
      <tr>
        <td align="left" width="auto" valign="top"  style="border-bottom:1px black solid"><xsl:value-of select="agency"/></td>
        <td align="left" width="500px" valign="top"  style="border-bottom:1px black solid"><xsl:value-of select="project"/></td>
	<td align="left" width="auto" valign="top"  style="border-bottom:1px black solid"><a><xsl:attribute name="href"><xsl:value-of select="file"/></xsl:attribute><xsl:value-of select="date"/></a></td>
      </tr>
      </xsl:for-each>
      <tr bgcolor="#00009C"><td colspan="3" align="center"><a href="#top" style="color: white;text-decoration:none" target="_self"><b>Go to Top</b></a></td></tr>
    </table>
  </body>
  </html>
</xsl:template>

</xsl:stylesheet>
