<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:s="http://www.stylusstudio.com/xquery">
    <xsl:template match="/">
        <html>
            <head/>
            <body>
                <div style="text-align: none;">
                    <span style="font-family: Verdana;font-size: 8pt;">
                        <table align="none" style="border-style: solid;border-width: 1pt;width: 800 pxpt;background-color: lightgoldenrodyellow;background-repeat: repeat" cellspacing="0pt">
                            <tbody>
                                <tr bgcolor="tan">
                                    <td style="border-style: solid;border-width: 1pt;border-color: lightblue;;vertical-align: middle;background-repeat: repeat">
                                        <div style="font-family: Verdana;font-size: 8pt;text-align: none;background: #D2B48C;">
                                            <span style="font-weight: bold;color: #000080;">
                                                <xsl:text>Commodity Description</xsl:text>
                                            </span>
                                        </div>
                                    </td>
                                    <td style="border-style: solid;border-width: 1pt;border-color: lightblue;;width: 5%;vertical-align: middle;background-repeat: repeat">
                                        <div style="font-family: Verdana;font-size: 8pt;text-align: center;background: #D2B48C;">
                                            <span style="font-weight: bold;color: #000080;">
                                                <xsl:text>HS4</xsl:text>
                                            </span>
                                        </div>
                                    </td>
                                    <td style="border-style: solid;border-width: 1pt;border-color: lightblue;;width: 11%;vertical-align: middle;background-repeat: repeat">
                                        <div style="font-family: Verdana;font-size: 8pt;text-align: center;background: #D2B48C;">
                                            <span style="font-weight: bold;color: #000080;">
                                                <xsl:text>2007</xsl:text>
                                                <br/>
                                                <xsl:text>Amount($)</xsl:text>
                                            </span>
                                        </div>
                                    </td>
                                    <td style="border-style: solid;border-width: 1pt;border-color: lightblue;;width: 10%;vertical-align: middle;background-repeat: repeat">
                                        <div style="font-family: Verdana;font-size: 8pt;text-align: center;background: #D2B48C;">
                                            <span style="font-weight: bold;color: #000080;">
                                                <xsl:text>2007 </xsl:text>
                                                <br/>
                                                <xsl:text>Share(%)</xsl:text>
                                            </span>
                                        </div>
                                    </td>
                                    <td style="border-style: solid;border-width: 1pt;border-color: lightblue;;width: 11%;vertical-align: middle;background-repeat: repeat">
                                        <div style="font-family: Verdana;font-size: 8pt;text-align: center;background: #D2B48C;">
                                            <span style="font-weight: bold;color: #000080;">
                                                <xsl:text>2006 </xsl:text>
                                                <br/>
                                                <xsl:text>Amount($)</xsl:text>
                                            </span>
                                        </div>
                                    </td>
                                    <td style="border-style: solid;border-width: 1pt;border-color: lightblue;;width: 10%;vertical-align: middle;background-repeat: repeat">
                                        <div style="font-family: Verdana;font-size: 8pt;text-align: center;background: #D2B48C;">
                                            <span style="font-weight: bold;color: #000080;">
                                                <xsl:text>2006</xsl:text>
                                                <br/>
                                                <xsl:text>Share(%)</xsl:text>
                                            </span>
                                        </div>
                                    </td>
                                </tr>
                                <xsl:for-each select="/USTRADE/d">
                                    <xsl:variable name="d" select="."/>
                                    <tr>
                                        <td style="border-style: solid;border-width: 1pt;border-color: lightblue;;vertical-align: middle;background-repeat: repeat">
                                            <div style="font-family: Verdana;font-size: 8pt;text-align: none;background: #FAFAD2;">
                                                <xsl:value-of select="CD"/>
                                            </div>
                                        </td>
                                        <td style="border-style: solid;border-width: 1pt;border-color: lightblue;;width: 5%;vertical-align: middle;background-repeat: repeat">
                                            <div style="font-family: Verdana;font-size: 8pt;text-align: center;background: #FAFAD2;">
                                                <xsl:value-of select="ty/HS4"/>
                                            </div>
                                        </td>
                                        <td style="border-style: solid;border-width: 1pt;border-color: lightblue;;width: 11%;vertical-align: middle;background-repeat: repeat">
                                            <div style="font-family: Verdana;font-size: 8pt;text-align: center;background: #FAFAD2;">
                                                <xsl:value-of select="ty/Amount1"/>
                                            </div>
                                        </td>
                                        <td style="border-style: solid;border-width: 1pt;border-color: lightblue;;width: 10%;vertical-align: middle;background-repeat: repeat">
                                            <div style="font-family: Verdana;font-size: 8pt;text-align: center;background: #FAFAD2;">
                                                <xsl:value-of select="ty/Share1"/>
                                            </div>
                                        </td>
                                        <td style="border-style: solid;border-width: 1pt;border-color: lightblue;;width: 11%;vertical-align: middle;background-repeat: repeat">
                                            <div style="font-family: Verdana;font-size: 8pt;text-align: center;background: #FAFAD2;">
                                                <xsl:value-of select="ty/py/Amount2"/>
                                            </div>
                                        </td>
                                        <td style="border-style: solid;border-width: 1pt;border-color: lightblue;;width: 10%;vertical-align: middle;background-repeat: repeat">
                                            <div style="font-family: Verdana;font-size: 8pt;text-align: center;background: #FAFAD2;">
                                                <xsl:value-of select="ty/py/Share2"/>
                                            </div>
                                        </td>
                                    </tr>
                                </xsl:for-each>
                            </tbody>
                        </table>
                    </span>
                </div>
            </body>
        </html>
    </xsl:template>
</xsl:stylesheet>