<?xml version="1.0" encoding="iso-8859-1"?>
<!-- for serving to legacy browsers. -->
<xsl:stylesheet version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns="http://www.w3.org/1999/xhtml">
  <xsl:output
    method="xml"
    encoding="iso-8859-1"
    omit-xml-declaration="no"
    doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
    doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
    cdata-section-elements="script style"
    indent="yes"
    media-type="application/xhtml+xml"/>
  <xsl:template match="/">
    <xsl:copy-of select="."/>
  </xsl:template>
  <xsl:template match="xsl:stylesheet"/><!-- ignore -->
</xsl:stylesheet>
