<?xml version="1.0" encoding="EUC-KR"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/TR/xhtml1/strict">
<xsl:template match="/">
<html>
<head>
<title>Expense Report Summary</title>
</head>
<body>
<p>
Total Amount: <xsl:value-of select="expense-report/total"/>
</p>
</body>
</html>
</xsl:template>
</xsl:stylesheet>