public CSSStyleDeclaration getStyle() {
if (decl == null) {
String csstext = getAttribute("style");
if ((csstext != null) && !"".equals(csstext)) {
CCSSStyleRule rule = new CCSSStyleRule(null,
csstext, null, null);
decl = rule.getStyle();
} // end if
} // end if
return decl;