public void startDocument() throws SAXException {
}
public void startElement(String ns, String local, String qname, Attributes attrs) throws SAXException {
SMapImpl smap = new SMapImpl(new SMapAttributesAdapter(attrs));
styler.pushElement(ns, local, smap);
BaseRule es = styler.getCascadeResult().getProperties().getPropertySet();
smap.put(null, "style", (es.isEmpty() ? null : es.toString()));
ser.startElement(ns, local, smap, qname.indexOf(':') < 0);
}