/**
  * put inline styles
  */
 protected function putInlineStyle($style, $output)
 {
     //put in the body or add to inline
     $putStylesInBody = $this->getParam("tab_put_styles_in_body", self::FORCE_BOOLEAN);
     if ($putStylesInBody == true) {
         $output .= "\n<style type='text/css'>{$style}</style>\n\n";
     } else {
         HelperUG::addStyleInline($style);
     }
     return $output;
 }