<?xml version="1.0"?><xsl:stylesheet id="transcription" version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"><xsl:template match="archive">	<html>	<head>	<title><xsl:value-of select="text/header/title"/></title>	</head>	<body>		<xsl:apply-templates/>	</body>	</html></xsl:template><xsl:template match="text">		<xsl:apply-templates/></xsl:template><xsl:template match="header">	<h2><xsl:text>Title: </xsl:text><xsl:value-of select="title"/><br/><xsl:text>Sound file: </xsl:text><xsl:value-of select="soundfile/@href"/><br/><xsl:text>Language of text: </xsl:text><xsl:value-of select="../@id"/></h2>	<xsl:apply-templates/></xsl:template><xsl:template match="title"></xsl:template><xsl:template match="s">	<hr/>	<table cellspacing="10">	<tc><td><b><xsl:value-of select="@id"/></b></td></tc><tc><td><tt><xsl:text>begin time: </xsl:text><xsl:value-of select="audio/@start"/></tt></td></tc><tc><td><tt><xsl:text>end time: </xsl:text><xsl:value-of select="audio/@end"/></tt></td></tc><tc><td><tt><xsl:text>speaker: </xsl:text><xsl:value-of select="@who"/></tt></td></tc>	</table>	<table cellspacing="10">	<xsl:apply-templates/>	</table></xsl:template><xsl:template match="w">	<xsl:apply-templates/></xsl:template><xsl:template match="m">	<tc>	<td><xsl:value-of select="form"/><br/>	<xsl:value-of select="transl"/></td>	</tc></xsl:template><xsl:template match="form">	<tc><td><xsl:value-of select="."/></td></tc></xsl:template><xsl:template match="transl">	<table>	<tr><td><xsl:value-of select="."/></td></tr>	</table></xsl:template><xsl:template match="note">	<table>	<tr><td><i><xsl:text>Comment: </xsl:text><xsl:value-of select="@message"/></i></td></tr>	</table></xsl:template></xsl:stylesheet>