<?xml version="1.0"?> 
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

<xsl:output method="xml" indent="yes" encoding="us-ascii"/>

<xsl:template match="/ProductInfo">
<amazonResult>
<xsl:apply-templates select="Details"/>
</amazonResult>
</xsl:template>

<xsl:template match="Details">

<title><xsl:value-of select="ProductName"/></title>
<author><xsl:value-of select="Authors/Author"/></author>
<salesRank><xsl:value-of select="SalesRank"/></salesRank>
<avgRating><xsl:value-of select="Reviews/AvgCustomerRating"/></avgRating>

</xsl:template>

</xsl:stylesheet>
