<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
        version="1.0"
        xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
        xmlns="http://www.w3.org/1999/xhtml"
        >
        <xsl:import href="class.xsl"/>

        <xsl:template match="itemizedlist">
        <div class="list">
                <div class="{@role}">
                        <xsl:apply-templates />
                </div>
        </div>
        </xsl:template>

        <xsl:template match="listitem">
                <p>
                </p>
        </xsl:template>

</xsl:stylesheet>
