<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE xsl:stylesheet [
<!ENTITY amp   "&#38;">
<!ENTITY copy   "&#169;">
<!ENTITY gt   "&#62;">
<!ENTITY hellip "&#8230;">
<!ENTITY laquo  "&#171;">
<!ENTITY lsaquo   "&#8249;">
<!ENTITY lsquo   "&#8216;">
<!ENTITY lt   "&#60;">
<!ENTITY nbsp   "&#160;">
<!ENTITY quot   "&#34;">
<!ENTITY raquo  "&#187;">
<!ENTITY rsaquo   "&#8250;">
<!ENTITY rsquo   "&#8217;">
]>


<xsl:stylesheet version="3.0" expand-text="yes"
				xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
				xmlns:xs="http://www.w3.org/2001/XMLSchema"
				xmlns:ou="http://omniupdate.com/XSL/Variables"
				xmlns:fn="http://omniupdate.com/XSL/Functions"
				xmlns:ouc="http://omniupdate.com/XSL/Variables"
				exclude-result-prefixes="ou xsl xs fn ouc">

	<xsl:import href="common.xsl"/>

	<xsl:template name="template-headcode"/>
	<xsl:template name="template-footcode"/>

	<xsl:template name="page-content">
		<main class="content" id="main-content">
			<section class="hero-banner">
				<xsl:if test="ou:textual-content( ou:pcf-param('hero-img') ) != '' "> 
					<img src="{ou:pcf-param('hero-img')}" alt="{ou:pcf-param('hero-img-alt')}"/>
				</xsl:if>
				<xsl:if test="ou:textual-content( ou:pcf-param('heading') ) != '' "> 
					<h1 class="sr-only">{ou:pcf-param('heading')}</h1>
				</xsl:if>
			</section>
			<xsl:apply-templates select="ouc:div[@label='maincontent']" />
		</main>
	</xsl:template>


</xsl:stylesheet>