<?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">
<table border="4" width="30%" align="center" cellspacing="0" bgcolor="#483d8b">
<tr>
<td align="left">
<h3><font color="white" face="Arial, Times New Roman">
<p align="center"><xsl:apply-templates/></p>
</font></h3>
</td>
</tr>
</table>
</xsl:template>
<xsl:template match="auctor">
<h4><font color="black" face="Arial, Times New Roman">
<p align="center"><xsl:apply-templates/></p>
</font></h4>
</xsl:template>
<xsl:template match="pars">
<p>
<tt>
<p align="center"><xsl:apply-templates/></p>
</tt>
</p>
</xsl:template>
<xsl:template match="versus">
<center><tt>
<xsl:apply-templates/><br />
</tt></center>
</xsl:template>
</xsl:stylesheet>