<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

  <xsl:template match="/">
    <xsl:apply-templates />
  </xsl:template>

  <xsl:template match="auto">
    <xsl:call-template name="auto" />
  </xsl:template>

  <xsl:template name="auto">
    <strong>Costruttore: </strong> <xsl:value-of select="@costruttore" /><br />
    <strong>Modello:</strong> <xsl:value-of select="@modello" /><br />
    <strong>Anno:</strong> <xsl:value-of select="@anno" /><br />
   <xsl:apply-templates />
	 <hr />
  </xsl:template>

  

  
</xsl:stylesheet>

