<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xhtml="http://www.w3.org/1999/xhtml" version="1.0">
<xsl:output method='xml' indent='yes' omit-xml-declaration='no' encoding="ISO-8859-1" />

<xsl:template match='xhtml:div[@class="leftbar"]' />
<xsl:template match='xhtml:div[@class="navbar"]' />

<xsl:template match='@* | node()'>
  <xsl:copy>
    <xsl:apply-templates select='@* | node()'/>
  </xsl:copy>
</xsl:template>


</xsl:stylesheet>
