<?xml version='1.0' ?>
<xsl:stylesheet version="1.0" 
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
                xmlns:w="http://schemas.microsoft.com/office/word/2003/wordml"
                xmlns:wx="http://schemas.microsoft.com/office/word/2003/auxHint">

	<xsl:template match="/">
		<document>
			<xsl:apply-templates select="w:wordDocument/w:body/*"/>
		</document>
	</xsl:template>

	<xsl:template match="w:p[w:pPr/w:outlineLvl/@w:val]">
		<head><xsl:apply-templates select="*"/></head>
	</xsl:template>

	<xsl:template match="w:p[w:pPr/w:pStyle/@w:val='BulletList']">
		<xsl:if test="preceding-sibling::w:p[1][not(w:pPr/w:pStyle/@w:val)]">
			<itemizedList>
				<xsl:for-each select=". | following-sibling::w:p[w:pPr/w:pStyle/@w:val='BulletList']">
					<listitem><xsl:apply-templates select="* | text()"/></listitem>
				</xsl:for-each>
			</itemizedList>
		</xsl:if>
	</xsl:template>

	<xsl:template match="w:p">
		<para><xsl:apply-templates select="* | text()"/></para>
	</xsl:template>

	<xsl:template match="w:r[w:rPr/w:rStyle/@w:val='PlaceHolder']">
		<placeholder type="numberspace"><xsl:apply-templates select="* | text()"/></placeholder>
	</xsl:template>

	<xsl:template match="w:r[w:rPr/w:b]">
		<emphasis variant="1">
			<xsl:apply-templates select="* | text()"/>
		</emphasis>
	</xsl:template>

	<xsl:template match="w:r[w:rPr/w:i]">
		<emphasis variant="2">
			<xsl:apply-templates select="* | text()"/>
		</emphasis>
	</xsl:template>

	<xsl:template match="w:r[w:rPr/w:b and w:rPr/w:i]">
		<emphasis variant="3">
			<xsl:apply-templates select="* | text()"/>
		</emphasis>
	</xsl:template>

	<xsl:template match="wx:sect">
		<division>
			<xsl:apply-templates select="*"/>
		</division>
	</xsl:template>

	<xsl:template match="wx:sub-section">
		<section>
			<xsl:apply-templates select="*"/>
		</section>
	</xsl:template>

	<xsl:template match="*">
		<xsl:apply-templates select="* | text()"/>
	</xsl:template>

</xsl:stylesheet><!-- Stylus Studio meta-information - (c) 2004-2009. Progress Software Corporation. All rights reserved.

<metaInformation>
	<scenarios>
		<scenario default="yes" name="Scenario1" userelativepaths="yes" externalpreview="no" url="wordML.xml" htmlbaseurl="" outputurl="" processortype="saxon8" useresolver="yes" profilemode="0" profiledepth="" profilelength="" urlprofilexml=""
		          commandline="" additionalpath="" additionalclasspath="" postprocessortype="none" postprocesscommandline="" postprocessadditionalpath="" postprocessgeneratedext="" validateoutput="no" validator="internal" customvalidator="">
			<advancedProp name="sInitialMode" value=""/>
			<advancedProp name="bXsltOneIsOkay" value="true"/>
			<advancedProp name="bSchemaAware" value="true"/>
			<advancedProp name="bXml11" value="false"/>
			<advancedProp name="iValidation" value="0"/>
			<advancedProp name="bExtensions" value="true"/>
			<advancedProp name="iWhitespace" value="0"/>
			<advancedProp name="sInitialTemplate" value=""/>
			<advancedProp name="bTinyTree" value="true"/>
			<advancedProp name="bWarnings" value="true"/>
			<advancedProp name="bUseDTD" value="false"/>
			<advancedProp name="iErrorHandling" value="fatal"/>
		</scenario>
	</scenarios>
	<MapperMetaTag>
		<MapperInfo srcSchemaPathIsRelative="yes" srcSchemaInterpretAsXML="no" destSchemaPath="workbook1.xml" destSchemaRoot="document" destSchemaPathIsRelative="yes" destSchemaInterpretAsXML="no">
			<SourceSchema srcSchemaPath="wordML1.xml" srcSchemaRoot="document" AssociatedInstance="" loaderFunction="document" loaderFunctionUsesURI="no"/>
		</MapperInfo>
		<MapperBlockPosition>
			<template match="/">
				<block path="document/xsl:for-each" x="221" y="44"/>
			</template>
		</MapperBlockPosition>
		<TemplateContext></TemplateContext>
		<MapperFilter side="source"></MapperFilter>
	</MapperMetaTag>
</metaInformation>
-->