<?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>
 <Head>
 <Title>
 The play
 </Title>
 </Head>
 <body>
 <xsl:apply-templates/>
 </body>
 </html>
</xsl:template>

<xsl:template match="FM/P">
<p><small><i><xsl:apply-templates/></i></small></p>
</xsl:template>

<xsl:template match="PLAY/TITLE">
<h1><xsl:apply-templates/></h1>
</xsl:template>

<xsl:template match="PLAYSUBT">
<h1><xsl:apply-templates/></h1>
</xsl:template>


<xsl:template match="ACT/TITLE">
<h2><xsl:apply-templates/></h2>
</xsl:template>

<xsl:template match="PERSONAE/TITLE">
<h3><xsl:apply-templates/></h3>
</xsl:template>

<xsl:template match="SCENE/TITLE">
<h3><xsl:apply-templates/></h3>
</xsl:template>

<xsl:template match="PERSONA">
<i><xsl:apply-templates/></i><br/>
</xsl:template>

<xsl:template match="PGROUP">
<p><xsl:apply-templates/></p>
</xsl:template>

<xsl:template match="STAGEDIR">
<font color="7f7f7f"><i><xsl:apply-templates/></i></font><br/>
</xsl:template>

<xsl:template match="SCNDESCR">
<p><font color="7f7f7f"><b><xsl:apply-templates/></b></font></p>
</xsl:template>

<xsl:template match="LINE">
<xsl:apply-templates/><br/>
</xsl:template>

<xsl:template match="SPEECH">
<p><xsl:apply-templates/></p>
</xsl:template>

<xsl:template match="SPEAKER">
<b><xsl:apply-templates/>: </b>
</xsl:template>

<xsl:template match="dtSearchHit">
<span style="background-color: #FFFF00"><xsl:apply-templates/></span>
</xsl:template>



</xsl:stylesheet>
