<?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:variable name="inside">
 			<xsl:apply-templates/>
	</xsl:variable>
 	<xsl:if test="(.!='') or ($inside!='')">
 		<xsl:copy>
 			<xsl:copy-of select="$inside"/>
 		</xsl:copy>
 	</xsl:if>
 </xsl:template> 
</xsl:stylesheet>