document.write('<style id="noflickerCSS-kosning" type="text/css">'
+ '.candidates ul,'
+'x { display: none; }'
+ ''
+'x { display: block; }</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('noflickerCSS-kosning');
    c && c.parentNode.removeChild(c);
  }, 8000);

