<?xml version="1.0" encoding="iso-8859-1"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output indent="yes"/>

<xsl:template match="/">
<html>
<body>
<xsl:apply-templates/>
</body>
</html>
</xsl:template>

<xsl:template match="label">
<!--  <xsl:apply-templates/> -->
<p><xsl:copy-of select="*|text()"/></p>
</xsl:template>

<xsl:template match="label" mode="mode1">
<!--  <xsl:apply-templates/> -->
<br/><br/>
<xsl:copy-of select="*|text()"/>
<br/>
</xsl:template>

<xsl:template match="element">
<xsl:apply-templates mode="mode1"/>
</xsl:template>

<xsl:template match="type[@className='temp.Agreement']" mode="mode1">
Strongly Disagree [ ]  [ ]  [ ]  [ ]  [ ]  [ ] [ ] Strongly Agree
</xsl:template>

<xsl:template match="type[@className='temp.TlxLevel']" mode="mode1">
Low [ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ][ ] High
</xsl:template>

<xsl:template match="type[@className='temp.MultipleChoice']" mode="mode1">
  <xsl:apply-templates select="multipleChoiceConfig/choice"/>
</xsl:template>

<xsl:template match="choice" mode="mode1">
  [ ] <xsl:value-of select="@label"/>
</xsl:template>

<xsl:template match="page">
<h3><xsl:value-of select="@label"/></h3>
<xsl:apply-templates/>
<hr/>
</xsl:template>


<!--
<xsl:template match="*">
</xsl:template>
-->

<!--
<xsl:template match="*">
  <xsl:element name="{name()}"> 
    <xsl:copy-of select="@*"/>
    <xsl:apply-templates/>
  </xsl:element>
</xsl:template>
-->
</xsl:stylesheet>

