<?xml version="1.0" encoding="iso-8859-1" standalone="yes"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
		version="1.0">
<xsl:output method='html'/>
<xsl:include href='b5lib.xsl'/>
<xsl:template match='/'>
	<html>
		<xsl:apply-templates select='//abschnitt[@FileID="BD3438w.xml"]'/>
	</html>
</xsl:template>
<xsl:template match='abschnitt'>
	<b>Werteliste</b>
	<table>
	<xsl:apply-templates select=".//wert">
		<xsl:sort select='beschreibung'/>
	</xsl:apply-templates>
	</table> 
</xsl:template>
<xsl:template match='ueberschrift'>
	<ueberschrift><xsl:value-of select='.'/></ueberschrift>	
</xsl:template>
<xsl:template match='*'/>
</xsl:stylesheet>

