<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl" xmlns:HTML="http://www.w3.org/Profiles/XHTML-transitional">
	<xsl:template><xsl:apply-templates/></xsl:template>

	<xsl:template match="/*"><xsl:apply-templates/></xsl:template>

	<xsl:template match="text()"><xsl:value-of select="."/></xsl:template>
		
	<xsl:template match="BTV_EXPORT_DOC">
		<HTML>
			<head>
				<meta http-equiv="Expires" content='Thu, 01 Dec 1994 120000 GMT'/>
				<style>
					a:link {  font-family: Verdana; font-weight: none ; color: #AAAAFF; text-decoration: none}
						a:visited {  font-family: Verdana; font-weight: none ; color: #AAAAFF; text-decoration: none}	
						a:hover {  font-family: Verdana; color: #FF9900; text-decoration: none; font-weight: none}	
						a:active {  font-family: Verdana; font-weight: none; color: #FF9900; text-decoration: none}	
						td {  font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 9pt; font-weight: normal; color: #000000; text-decoration: none;}	
						.t1 {  font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12pt; font-weight: bold; color: #009900; text-decoration: none}
						.t2 {  font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10pt; font-weight: bold; color: #009900}	
						.t3 {  font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10pt; font-weight: bold; color: #000000; text-decoration: none}
						.txt {  font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10pt; text-decoration: none; font-weight: normal}
						.small {  font-family: Verdana; font-size: 8pt; text-decoration: none; font-weight: normal}
				</style>
			</head>
			<BODY bgcolor="FFFFFF">
				<div align="center">
					<img src='http://www.nexen.org/images/nexen.org/pages/btvmanager_site_banner.jpg'/><br/>
					<font color="CCCCCC" class="txt">Broadcast TV Manager<br/>XML Export Page with XSL file</font>
					<br/>
					<br/>
					<br/>
					<table cellspacing="0" cellpadding="0" border="0" bgcolor="315273" align="center">
						<tr>
							<td>
								<table cellspacing="1" cellpadding="0" border="0">
									<tr bgcolor="EEEEEE" class="small" align="center">
										<td colspan="6" height="25"><font class="t3">Running HLTV</font></td>
									</tr>
									<tr bgcolor="FFFFFF" align="center">
										<td width="300">HLTV</td>
										<td width="170">Match</td>
										<td width="300">Info</td>
									</tr>
									<xsl:apply-templates select="OBJECT" />	
								</table>
							</td>
						</tr>
					</table>
					<hr/>
				</div>
			</BODY>
		</HTML>
	</xsl:template>

	<xsl:template match="OBJECT">
		<tr bgcolor="FFFFFF" class="small" align="center" height="25">
			<td class="small"><xsl:value-of select="@ADDRESS" /></td>
			<td class="small">
					<xsl:value-of select="PLAYER1"/> vs <xsl:value-of select="PLAYER2"/>
			</td>
			<td><xsl:value-of select="PLAYER1_SCORE_CT"/> + <xsl:value-of select="PLAYER1_SCORE_T"/> -
			<xsl:value-of select="PLAYER2_SCORE_CT"/> + <xsl:value-of select="PLAYER2_SCORE_T"/>
			</td>
		</tr>
	</xsl:template>

</xsl:stylesheet>