<?xml version="1.0" encoding="ISO-8859-1"?>

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:output method='html' version='1.0' encoding='UTF-8' indent='yes'/>

   <xsl:template match="/">
     <div id="ArtListLid.visible" style="position:relative; width:660px; height:250px; z-index:20; top: -3px; left: 3px;">
        <xsl:apply-templates/>
     </div>
   </xsl:template>

   <xsl:template match="back">
     <div id="ArtListBackLink" style="position:relative; width:660px; height:30px; z-index:21; top: 20px; left: 20px;">
       <span class="ArtSelectedClassSubHead"> <a href="javascript:displayLFPC({@id_class})"> <xsl:value-of select="classname"/> </a> </span> <span class="ArtSelectedSubClassSubHead"> -- <xsl:value-of select="subclassname"/> -- </span> <span class="ArtListReturn"><a href="javascript:displayLFPC(&apos;LFPClassLid&apos;)"> return to top level classification list </a></span>
     </div>

   </xsl:template>

   <xsl:template match="rows">
     <div style="position:relative; width:660px; top : 15 px; left : 20px">
        <table width="660" cellspacing="10">
          <xsl:apply-templates/>
        </table>
      </div>
   </xsl:template>

   <xsl:template match="row">
     <tr>
       <xsl:apply-templates/>
     </tr>
   </xsl:template>

   <xsl:template match="art">
     <td>
       <a href="{link}"> <xsl:value-of select="title"/> </a>
     </td>
   </xsl:template>

</xsl:stylesheet>
