<?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='xml'/>
<xsl:template match='/'>
	<root_node>
		<xsl:apply-templates select="//ueberschrift[../abschnitt/wert]">
			<xsl:sort select='.'/>
		</xsl:apply-templates>
	</root_node>
</xsl:template>
<xsl:template match='ueberschrift'>
	<ueberschrift><xsl:value-of select='.'/></ueberschrift>	
</xsl:template>
<xsl:template match='*'/>
</xsl:stylesheet>

