<?xml version='1.0'?><xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"><xsl:template match="/">    <HTML>      <HEAD>        <TITLE><xsl:value-of select="//text/body/div1/head"/></TITLE>        <STYLE>          BODY       { margin:30px; background-color: #FFFFFF; width: 30em;                       font-family: Times, serif; font-size: small; }          P          { margin-top: .5em; margin-bottom: .25em; }          HR         { color: #888833; }        </STYLE>      </HEAD>      <BODY>        <xsl:apply-templates select="//text"/>     </BODY>    </HTML>  </xsl:template><!-- major structure -->	<xsl:template match="div1">  	<hr width="75%"/><xsl:apply-templates/>  	</xsl:template>	<xsl:template match="back">  	<hr width="75%"/><font size="-1"><xsl:apply-templates/></font>  	</xsl:template>	<xsl:template match="front">  	<hr width="75%"/><xsl:apply-templates/>  	</xsl:template><!-- PAGE COLUMN AND LINE BREAKS --><xsl:template match="pb">        <HR width="75%"/>        <CENTER><P><I>-<xsl:value-of select="@n"/>-</I></P></CENTER></xsl:template><xsl:template match="lb">        <xsl:apply-templates/><BR/></xsl:template><!-- MSS ITEMS -->	<xsl:template match="add">        <font color="green"><xsl:apply-templates/></font> 	</xsl:template>		<!-- <xsl:template match="add">		<xsl:apply-templates/>		</xsl:template> -->	<xsl:template match="del">        <S><font color="red"><xsl:apply-templates/></font></S> 	</xsl:template>		<!-- 		<xsl:template match="del">		</xsl:template> -->	<xsl:template match="unclear">        [<font color="blue"><xsl:apply-templates/></font>] 	</xsl:template><!-- 	<xsl:template match="orig">         <xsl:apply-templates/> 	</xsl:template> -->		<xsl:template match="orig">		<xsl:value-of select="@reg"/>		</xsl:template> 		<xsl:template match="orig[@rend='linebreak']">		<xsl:value-of select="@reg"/><br/>		</xsl:template> 	<xsl:template match="sic">         <xsl:apply-templates/> 	</xsl:template>		<!-- 	<xsl:template match="sic">		<xsl:value-of select="@corr"/>		</xsl:template> -->	<xsl:template match="corr">	<xsl:value-of select="@sic"/> [sic] 	</xsl:template> 		<!-- 	<xsl:template match="corr">        	 <xsl:apply-templates/> 		</xsl:template> --><!-- DIV HEADS --><xsl:template match="head">        <hr width="75%"/><center><h2><xsl:apply-templates/></h2></center></xsl:template><!-- Images (assumes same directory as text) -->	<xsl:template match="figure">	<A><xsl:attribute name="HREF"><xsl:value-of select="@entity"/>.jpg	</xsl:attribute><center>	<img><xsl:attribute name="src"><xsl:value-of select="@entity"/>.gif	</xsl:attribute></img></center></A><br/>	</xsl:template>    		<xsl:template match="figDesc">	</xsl:template><!-- Notes -->	<xsl:template match="note[@target]">		<A><xsl:attribute name="HREF">#<xsl:value-of select="@target"/>	</xsl:attribute><SUP><xsl:apply-templates/></SUP></A>	 	</xsl:template> 	<xsl:template match="note[@id]">		<P><A><xsl:attribute name="NAME">	<xsl:value-of select="@id"/></xsl:attribute></A>	<xsl:apply-templates/></P> 	</xsl:template>   <!-- DRAMA -->  <xsl:template match="sp/p">    <blockquote><xsl:apply-templates/></blockquote>  </xsl:template><xsl:template match="stage">        <blockquote><I><xsl:apply-templates/></I></blockquote></xsl:template><xsl:template match="lg">        <blockquote><xsl:apply-templates/></blockquote></xsl:template><xsl:template match="l">        <xsl:apply-templates/><br/> </xsl:template><xsl:template match="sp">        <p><xsl:apply-templates/></p></xsl:template><xsl:template match="speaker">        <font color="green"><xsl:apply-templates/></font></xsl:template> <xsl:template match="p">        <p><xsl:apply-templates/></p></xsl:template><xsl:template match="speaker">        <font color="green"><xsl:apply-templates/></font></xsl:template> <!-- LETTERS --><xsl:template match="opener">        <blockquote><xsl:apply-templates/></blockquote></xsl:template> <xsl:template match="closer">        <blockquote><xsl:apply-templates/></blockquote></xsl:template> <xsl:template match="dateline">        <blockquote><xsl:apply-templates/></blockquote></xsl:template> <xsl:template match="date">        <br/><xsl:apply-templates/></xsl:template><xsl:template match="name">        <br/><xsl:apply-templates/></xsl:template><!-- tables -->	<xsl:template match="table">      <table border="1"><xsl:apply-templates/></table></xsl:template>	<xsl:template match="row">      <tr><xsl:apply-templates/></tr> </xsl:template>	<xsl:template match="cell">      <td><xsl:apply-templates/></td></xsl:template><!-- lists -->	<xsl:template match="list">      <ul><xsl:apply-templates/></ul></xsl:template>	<xsl:template match="item">      <li><xsl:apply-templates/></li><br/><br/></xsl:template><!-- titles -->	<xsl:template match="title">      <i><xsl:apply-templates/></i></xsl:template>	<xsl:template match="titlePage">      <center><xsl:apply-templates/></center></xsl:template>	<xsl:template match="titlePart[@type='main']">		<h3><xsl:apply-templates/></h3></xsl:template>	<xsl:template match="titlePart[@type='sub']">		<h4><xsl:apply-templates/></h4></xsl:template><!-- typography -->	<xsl:template match="hi"><i><xsl:apply-templates/></i>	</xsl:template>	<xsl:template match="hi[@rend='bold']">		<b><xsl:apply-templates/></b></xsl:template>	<xsl:template match="hi[@rend='italics']">	<I><xsl:apply-templates/></I></xsl:template>	<xsl:template match="hi[@rend='italic']">		<I><xsl:apply-templates/></I></xsl:template>	<xsl:template match="hi[@rend='underline']">		<U><xsl:apply-templates/></U></xsl:template> 	<xsl:template match="hi[@rend='sup']">		<sup><xsl:apply-templates/></sup></xsl:template>	<xsl:template match="emph"><b><xsl:apply-templates/></b>	</xsl:template>	<xsl:template match="emph[@rend='bold']">		<b><xsl:apply-templates/></b></xsl:template>	<xsl:template match="emph[@rend='italics']">	<I><xsl:apply-templates/></I></xsl:template>	<xsl:template match="emph[@rend='italic']">		<I><xsl:apply-templates/></I></xsl:template>	<xsl:template match="emph[@rend='underline']">		<U><xsl:apply-templates/></U></xsl:template> 	<xsl:template match="emph[@rend='sup']">		<sup><xsl:apply-templates/></sup></xsl:template></xsl:stylesheet>