/**
  * Constructor
  *
  * @param OpenDocument_StyledElement $element
  */
 public function __construct($element)
 {
     $this->map = array('fontWeight' => 'fo:font-weight', 'fontStyle' => 'fo:font-style', 'fontName' => 'style:font-name', 'fontSize' => 'fo:font-size', 'backgroundColor' => 'fo:background-color', 'color' => 'fo:color', 'lineHeight' => 'style:line-height', 'underlineStyle' => 'style:text-underline-style', 'underlineWidth' => 'style:text-underline-width', 'underlineColor' => 'style:text-underline-color');
     parent::__construct($element);
 }