<?xml version="1.0"?>
<xsl:stylesheet version="1.0"  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
	<xsl:template match="/">
		<xsl:apply-templates/>
	</xsl:template>
	<xsl:template match="document">
		<html>
			<title>Spend Usage Report</title>
			<body>
	The following is the HTML-ized spend usage report.. <p/>
				<table border="1">
					<xsl:apply-templates/>
				</table>
			</body>
		</html>
	</xsl:template>
	<xsl:template match="header">
		<tr>
			<xsl:apply-templates/>
		</tr>
	</xsl:template>
	<xsl:template match="header/col">
		<th>
			<xsl:value-of select="."/>
		</th>
	</xsl:template>
	
	<xsl:template match="record">
		<tr>
			<xsl:apply-templates/>
		</tr>
	</xsl:template>
	
	<xsl:template match="record/*">
		<td nowrap="true" align="center">
			<xsl:value-of select="."/>
		</td>
	</xsl:template>
	
</xsl:stylesheet>
