﻿<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt">
	<xsl:output method="html" indent="yes" />
	<xsl:include href="bom_basic.xsl" />

	<xsl:template match="/">
		<xsl:text disable-output-escaping="yes">
		<![CDATA[<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">]]>
		</xsl:text>
		<html xmlns="http://www.w3.org/1999/xhtml">
			<head>
				<title>Configuration: Bill of Materials View</title>
				<xsl:call-template name="styles" />
				<xsl:call-template name="script" />
				<style>
					body { background-color:white; margin:6px; font-family:Segoe UI, Segoe, Tahoma, Helvetica, Arial, sans-serif; font-size:12px; color:#666; }
					.propHdr { font-weight: bold; }
				</style>
			</head>
			<body>
				<xsl:apply-templates/>
			</body>
		</html>
	</xsl:template>
</xsl:stylesheet>
