<?xml version="1.0" encoding="UTF-8"?>
<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="UTF-8"/>
	<xsl:strip-space elements="*"/>
	<xsl:template match="/">
		<html>
			<head>
				<title>Witches' Speech</title>
				<link rel="shortcut icon" href="/~styrheim/mg_69.ico"/>
				<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
				<style type="text/css">				
					<![CDATA[
							
body {
  background-color: black;
  color: red;
  font-weight: bold;
  text-align: center;
 }
 .First {text-align: left;}
 .Second {text-align: center;}
 .Third {text-align: right;}
 .ALL {text-align: center; letter-spacing: 0.3em; word-spacing:0.7em;}
 .intro {font-style: italic;}
  html { background-color: black;}
					]]>
				</style>
			</head>
			<body>
				<h1>Witches' Speech</h1>
				<p class="intro">Trying to see if the three witches are different personalities, or just three copies of the same.</p>
				<div>
					<xsl:for-each select="/play/act/scene/speech[speaker/@persona='Witches']">
						<div class="{speaker}">
							<xsl:apply-templates/>
						</div>
					</xsl:for-each>
				</div>
			</body>
		</html>
	</xsl:template>
	<xsl:template match="line[position()=1]">
		<xsl:apply-templates/>
	</xsl:template>
	<xsl:template match="line">
		<br/>
		<xsl:apply-templates/>
	</xsl:template>
	<xsl:template match="stagedir | speaker"/>
</xsl:stylesheet>

