<?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="impiegati">
    <xsl:value-of select="@nome" /><br />
    <xsl:apply-templates />
  </xsl:template>

  <xsl:template match="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 />
    <strong>Targa:</strong> <xsl:value-of select="@targa" /><br />
    <xsl:apply-templates />
	 <hr />
  </xsl:template>

  <xsl:template match="parcheggio">
    <strong>Parcheggio numero:</strong>  <xsl:value-of select="@numero" /><br />
	 <hr />  
  </xsl:template>
</xsl:stylesheet>

