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