<?xml version="1.0" encoding="UTF-16"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-16" indent="yes"/>
 <xsl:template match="/">
	<xsl:apply-templates/>
 </xsl:template>
 <xsl:template match="*">
 	<xsl:if test="(.!='') or (count(*) != 0)">
 		<xsl:copy>
 			<xsl:apply-templates/>
 		</xsl:copy>
 	</xsl:if>
 </xsl:template> 
</xsl:stylesheet>