<?xml version="1.0" ?>
<!DOCTYPE xsl:stylesheet [<!ENTITY nbsp "&#160;">]>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/">

<html>
<head><title>CSS</title></head>
<link rel="stylesheet" href="css.css" type="text/css" media="screen" />
<body>

<xsl:for-each select="cssml/style">

    <p class="style">
    <xsl:for-each select="selector">
        <span class="selector"><xsl:value-of /></span><xsl:if test="context()[not(end())]">,</xsl:if>
        <br />
    </xsl:for-each>
    <span class="scope">{<br />
    <xsl:for-each select="property">
    &nbsp;&nbsp;&nbsp;&nbsp;<span class="property"><xsl:value-of select="@name" /></span>: <span class="value"><xsl:value-of /></span>;<br />
    </xsl:for-each>
    }</span>
    </p>

</xsl:for-each>

</body></html>

</xsl:template>
</xsl:stylesheet>
