<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
							  xmlns:msxsl="urn:schemas-microsoft-com:xslt"
							  xmlns:user="mynamespace">
	<xsl:output method="html" media-type="text/html; charset=UTF-8"/>						
	<xsl:include href="top_nav.xsl"/>
	<xsl:template match="/">
		<html>
		<head>
			<base>
				<xsl:attribute name="href"><xsl:value-of select="/root/config/secure_path"/></xsl:attribute>
			</base>			
			<title><xsl:value-of select="root/title"/></title>
		</head>

			<xsl:call-template name="top_nav">
				<xsl:with-param name="account_nav">1</xsl:with-param>
			</xsl:call-template>
			<xsl:if test="/root/action = 'new'">
				<p><xsl:value-of select="/root/root/account_created"/></p>
			</xsl:if>
			<xsl:value-of select="/root/root/text" disable-output-escaping="yes"/>
			<xsl:call-template name="bottom_nav"/>
		</html>
	</xsl:template>
</xsl:stylesheet>

