<?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="/">
<html>

<head>
<meta http-equiv="imagetoolbar" content="no"/>
<style type="text/css">
/*body {
  font-family: Arial, Serif;
  background-color: #ffeebb; color: #663300;
  margin:1em 5% 1em 10%;
  }*/
p.j {margin-left:0%; margin-right:0%;
  text-indent:1em;
  text-align: justify;
  }
.floatlivro {float:left; width: 320px;}
.floatimg {float:left; width: 170px; padding-left:0%; padding-right:0%; margin-left:0%; margin-right:0%;}
</style>
</head>

<body>
<blockquote>
<h2>Um livro</h2>
<xsl:for-each select="biblioteca/livro">
<p class="floatimg">
<!-- <img>
  <xsl:attribute name="src">
  <xsl:value-of select="imagem" />
  </xsl:attribute>         
</img> -->
<img src="{imagem}" /></p>
<h4><xsl:value-of select="autor"/> - <xsl:value-of select="ano"/> &#8212; <i><xsl:value-of select="titulo"/></i>, <xsl:value-of select="editor"/></h4>
<xsl:apply-templates select="resumo/para"/>
<br clear="all"/>
</xsl:for-each>
</blockquote>

</body>
</html>
</xsl:template>

    <xsl:template match="resumo/para">
        <p class="j"><xsl:value-of select="."/></p>
    </xsl:template>

</xsl:stylesheet>
