}
public void startSelector(SelectorList selectors) throws CSSException {
// Create the style rule and add it to the rule list
CSSStyleRuleImpl sr = new CSSStyleRuleImpl(
CSSOMParser.this.getParentStyleSheet(),
this.getParentRule(), selectors);
this.addLocator(sr);
if (!this._nodeStack.empty()) {
Object o = this._nodeStack.peek();
((CSSRuleListImpl)/*this._nodeStack.peek()*/o).add(sr);
}
// Create the style declaration
CSSStyleDeclarationImpl decl = new CSSStyleDeclarationImpl(sr);
sr.setStyle(decl);
this._nodeStack.push(sr);
this._nodeStack.push(decl);
}