document.getElementsByTagName('html')[0].className = 'js-on';

noflicker = function ( domId, styles ) {
    document.write('<style id="'+ domId +'" type="text/css">'+ styles +'</style>');
    // Timeout after 8 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( domId );
        c && c.parentNode.removeChild(c);
      }, 8000);
  };

  
noflicker( 'noFOUC-main',

    '.sitemap .level3,'+
    'x { display: none !important; }'

  );

