/**
  * Adds section to rtf document.
  *
  * @return PHPRtfLite_Container_Section
  */
 public function addSection()
 {
     $section = new PHPRtfLite_Container_Section($this);
     if (count($this->_sections) == 0) {
         $section->setFirst(true);
     }
     $this->_sections[] = $section;
     return $section;
 }