<rules
    xmlns="http://namespaces.plone.org/diazo"
    xmlns:css="http://namespaces.plone.org/diazo/css"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    >

    <!-- will not work -->
    <before css:content-children="#one">
        <span>Uno</span>
    </before>

    <!-- will work -->
    <before css:content-children="#two">
        <span>Uno</span>
    </before>

    <before
        css:theme="#alpha"
        css:content-children="#one"
        />

    <before
        css:theme="#beta"
        css:content="#two"
        />

    <before
        css:theme="#delta"
        css:content-children="#three"
        />


</rules>
