}
public void startPage(String name, String pseudo_page) throws CSSException {
// Create the page rule and add it to the rule list
CSSPageRuleImpl pr = new CSSPageRuleImpl(
CSSOMParser.this.getParentStyleSheet(),
this.getParentRule(), name, pseudo_page);
this.addLocator(pr);
if (!this._nodeStack.empty()) {
((CSSRuleListImpl)this._nodeStack.peek()).add(pr);
}
// Create the style declaration
CSSStyleDeclarationImpl decl = new CSSStyleDeclarationImpl(pr);
pr.setStyle(decl);
this._nodeStack.push(pr);
this._nodeStack.push(decl);
}