<?xml version="1.0" encoding="ISO-8859-1"?>

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" />

<xsl:template match="/">

<xsl:for-each select="PRODUCTRESPONSE/ITEM">
<div style="width: 400px; background-color: #e0e0e0; border: 1px solid black; padding: 3px">
<a><xsl:attribute name="href"><xsl:value-of select="LINK" /></xsl:attribute><xsl:attribute name="target">_new</xsl:attribute><b><xsl:value-of select="CONDITION" /><xsl:text>&#x20;</xsl:text><xsl:value-of select="SYSTEM" /><xsl:text>&#x20;</xsl:text><xsl:value-of select="TITLE" /></b></a><br /><br />
<xsl:value-of select="DESCRIPTION" /><br /><br />
<b>Cost:</b> $<xsl:value-of select="COST" /><br />
<b>Available:</b> <xsl:value-of select="AVAILABLE" /><br />
</div><br />
</xsl:for-each>

</xsl:template>

</xsl:stylesheet>
