<?xml version="1.0"?><xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="pagina">
<xsl:processing-instruction name="cocoon-format">type="text/html"</xsl:processing-instruction>
<html>
<head>
<title>
<xsl:value-of select="titulus"/></title></head>
<body bgcolor="#ffffff">
<xsl:apply-templates/>
</body>
</html>
</xsl:template>
<xsl:template match="titulus">
<h1 align="center"><font color="darkgreen">
<xsl:apply-templates/>
</font></h1>
</xsl:template>
<xsl:template match="auctor">
<h1 align="center">
<xsl:apply-templates/>
</h1>
</xsl:template>
<xsl:template match="versus">
<p align="center">
<tt>
<xsl:apply-templates/>
</tt>
</p>
</xsl:template>
</xsl:stylesheet>