<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:aws="http://webservices.amazon.com/AWSECommerceService/2005-10-05" version="1.0" >
<xsl:output method="text"/>

<xsl:template match="/">
	<xsl:apply-templates select="aws:ItemLookupResponse/aws:Items/aws:Item/aws:ItemAttributes" />
</xsl:template>

<xsl:template match="aws:ItemAttributes">Title: <xsl:value-of select="aws:Title"/>
Published: <xsl:value-of select="substring(aws:PublicationDate, 0, 5)"/>
<xsl:apply-templates select="aws:Author"/>
ISBN: <xsl:value-of select="aws:ISBN"/>
List Price: <xsl:value-of select="aws:ListPrice/aws:FormattedPrice"/>
Amazon Price: <xsl:value-of select="/aws:ItemLookupResponse/aws:Items/aws:Item/aws:OfferSummary/aws:LowestNewPrice/aws:FormattedPrice"/>
</xsl:template>

<xsl:template match="aws:Author">
Authors: <xsl:value-of select="."/>
</xsl:template>
</xsl:stylesheet>
