<?xml version="1.0"?>

<xsl:stylesheet

  xmlns:xsl="http://www.w3.org/XSL/Transform/1.0">



  <xsl:template match="/">

    <xsl:root xmlns:xsl="http://www.w3.org/XSL/Format/1.0">



      <xsl:layout-master-set>

        <xsl:simple-page-master page-master-name="only">

          <xsl:region-body/>

        </xsl:simple-page-master>

      </xsl:layout-master-set>



      <xsl:page-sequence>



      <xsl:sequence-specification>

       <xsl:sequence-specifier-single page-master-name="only"/>

      </xsl:sequence-specification>



        <xsl:flow>

          <xsl:apply-templates select="//ATOM"/

            xmlns:xsl="http://www.w3.org/XSL/Transform/1.0"/>

        </xsl:flow>



      </xsl:page-sequence>



    </xsl:root>

  </xsl:template>



  <xsl:template match="ATOM">

    <xsl:block font-size="20pt" font-family="serif"

       xmlns:xsl="http://www.w3.org/XSL/Format/1.0">

      <xsl:value-of select="NAME"

        xmlns:xsl="http://www.w3.org/XSL/Transform/1.0"/>

    </xsl:block>

  </xsl:template>



</xsl:stylesheet>

