<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" /><!--need this to make stupid IE read it 
right-->
    <xsl:template match="/">
        <html>
            <body>
                <xsl:apply-templates select="TEI.2"/>
            </body>
        </html>
    </xsl:template>
    
    <xsl:template match="head">
        <h2 align="center">
            <xsl:apply-templates/>
        </h2>
        </xsl:template>
        
        <xsl:template match="byline">  <h3 align="center">
            <xsl:apply-templates/>
        </h3></xsl:template>
      
        <xsl:template match="text/body/div1/div2/head"><h3>
            <xsl:apply-templates/>
        </h3></xsl:template>
        
        <xsl:template match="p">  <p>
            <xsl:apply-templates/>
        </p></xsl:template>
      
   
    <xsl:template match="item">
        <ul>
            <li>
                <xsl:apply-templates/>
            </li>
        </ul>
    </xsl:template>
</xsl:stylesheet>

