/* The addNewStyleSheetByFullCSS function accepts one argument,
 the full CSS to be used within the style sheet, and the new
 style sheet is appended to the DOM tree automatically. */

function addStyle(innerCSS){
  var h=document.getElementsByTagName("head");if(!h.length)return;
  var newStyleSheet=document.createElement("style");
  newStyleSheet.type="text/css";
  h[0].appendChild(newStyleSheet);
  try{
    newStyleSheet.styleSheet.cssText=innerCSS;
  }catch(e){try{
    newStyleSheet.appendChild(document.createTextNode(innerCSS));
    newStyleSheet.innerHTML=innerCSS;
  }catch(e){}}
}

// ============

var fullCSS=''+
'\nbody.theme-promo-on #inner #contentPane #hiddenFlashObject, body.theme-promo-on #inner #contentPane #closeThisLink {display:none;'+
'\n}\n'



