<?xml version="1.0" encoding="ISO-8859-1"?><xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"><xsl:template match="/">
  <html>
  <body>
    <h2> </h2>
    <table border="0">
    <tr bgcolor="#9acd32">
      <th align="left">Lighthouse</th>
      <th align="left">Town/Isle</th>
			<th align="left">County</th>
			<th align="left">Part</th>
			<th align="left"> First Lit </th>
			<th align="left">Designer</th>
    </tr>
    <xsl:for-each select="lighthouses/light">
		<xsl:sort select="lighthouse"/>
    <tr>
      <td valign="top"><xsl:value-of select="lighthouse"/></td>
      <td valign="top"><xsl:value-of select="town"/></td>
			<td valign="top"><xsl:value-of select="county"/></td>
			<td valign="top"><xsl:value-of select="part"/></td>
			<td valign="top"><xsl:value-of select="lit"/></td>
			<td valign="top"><xsl:value-of select="designer"/></td>
    </tr>
    </xsl:for-each>
    </table>
  </body>
  </html>
</xsl:template></xsl:stylesheet>

