*/
public String getCellBackgroundColorString() {
String color = DEFAULT_BACKGROUND_COLOR;
OdfStyleBase styleElement = getCellStyleElement();
if (styleElement != null) {
OdfStyleProperty bkColorProperty = OdfStyleProperty.get(OdfStylePropertiesSet.TableCellProperties,
OdfName.newName(OdfDocumentNamespace.FO, "background-color"));
String property = styleElement.getProperty(bkColorProperty);
if (Color.isValid(property)) {
color = property;
}