}
else cssText += value.getCssText() + " ";
}
cssDec.setProperty("border",cssText,null); // Removed border color
CSS2Properties cssDec2 = (CSS2Properties)styleElem.getStyle();
String newColor = "rgb(255,100,150)";
cssDec2.setBorderColor(newColor);// border-color property
log("New border color: " + cssDec2.getBorderColor());
}