document.write('<style id="noflickerCSS" type="text/css">'+
'  .pghead .accbox, '+
' .international, ' +
' .acc2,' +
'x { display: none; }' +
'.international.cat1,'+
'x { display: block; }</style>');

// Timeout after 4 seconds and remove the <style> elements - 
// in case some script has thrown an error and js/init.js hasn't finished running
setTimeout(function(c){
    c = document.getElementById('noflickerCSS');
    c && c.parentNode.removeChild(c);
  }, 4000);
