<?xml version="1.0" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl" xmlns:xslt="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:msxsl="urn:schemas-microsoft-com:xslt">

<xslt:output method="text/css" />

<xsl:template match="/">

<xsl:for-each select="cssml/style">

<xsl:for-each select="selector">
    <xsl:value-of /><xsl:if test="context()[not(end())]">,</xsl:if>
</xsl:for-each>
{
<xsl:for-each select="property">
    <xsl:value-of select="@name" />: <xsl:value-of />;&#xD;
</xsl:for-each>
}

</xsl:for-each>

</xsl:template>
</xsl:stylesheet>
