<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:aws="http://webservices.amazon.com/AWSECommerceService/2006-03-08" exclude-result-prefixes="aws" version="1.0">
  <xsl:output method="html" encoding="utf-8"/>
<xsl:template match="/">
<xsl:apply-templates select="aws:ItemLookupResponse/aws:Items/aws:Item/aws:Offers/aws:Offer/aws:OfferListing"/>
</xsl:template>

<xsl:template match="aws:OfferListing">

<xsl:variable name="ourprice" select="aws:Price/aws:FormattedPrice"/>
<xsl:variable name="availavility" select="aws:Availability"/>
<html lang="ja">
<head>
</head>
<body bgcolor="#FFFFF0">
<font size="-1" color="#990000" face="Trebuchet MS, Verdana, Arial, Helvetica">
<b><xsl:value-of select="$ourprice"/></b><br/>
</font>
<font size="-1" color="#333333" face="Trebuchet MS, Verdana, Arial, Helvetica">
<xsl:value-of select="$availavility"/>
</font>
<br/>
</body>
</html>
</xsl:template>

</xsl:stylesheet>
