<?xml version="1.0" encoding="utf-8"?><!-- DWXMLSource="delivery.xml" -->
<!DOCTYPE xsl:stylesheet  [
	<!ENTITY nbsp   "&#160;">
	<!ENTITY copy   "&#169;">
	<!ENTITY reg    "&#174;">
	<!ENTITY trade  "&#8482;">
	<!ENTITY mdash  "&#8212;">
	<!ENTITY ldquo  "&#8220;">
	<!ENTITY rdquo  "&#8221;"> 
	<!ENTITY pound  "&#163;">
	<!ENTITY yen    "&#165;">
	<!ENTITY euro   "&#8364;">
]>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" encoding="utf-8" doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"/>
 <xsl:template match="/">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>test</title>
</head>
<body>
  <h2>Delivery Summary</h2>
    <table >
    <thead>
    	<tr>
        	<th width="165" scope="col">Type</th>
            <th width="209"  scope="col">% of Attempted to Deliver</th>
            <th width="90" scope="col">Total</th>
        </tr>
    </thead>
        <tfoot>
    </tfoot>
    <tbody>
    <xsl:for-each select="DELIVERY/SUMMARY">
    	<tr>
        	<td><xsl:value-of select="TITLE"/></td>
            <td><xsl:value-of select="ATTEMPTED"/></td>
            <td><xsl:value-of select="TOTAL"/></td>
        </tr>
     </xsl:for-each>
    </tbody>
</table>
  <h2>Activity Summary</h2>
    <table >
    <thead>
    	<tr>
        	<th width="165" scope="col">Type</th>
            <th width="209"  scope="col">% of Successfully Delivered</th>
            <th width="90" scope="col">Total</th>
        </tr>
    </thead>
        <tfoot>
    </tfoot>
    <tbody>
    <xsl:for-each select="DELIVERY/SUMMARY">
    	<tr>
        	<td><xsl:value-of select="TITLE"/></td>
            <td><xsl:value-of select="ATTEMPTED"/></td>
            <td><xsl:value-of select="TOTAL"/></td>
        </tr>
     </xsl:for-each>
    </tbody>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>





