﻿var head, style;
head = document.getElementsByTagName('body')[0];
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = "body, div, div div { color:white !important;background:black !important;} a.link, a.visited, a.hover {color:green !important;}";
head.appendChild(style);
function(){
var b=document.getElementsByTagName('*');

for(var i=0;i<b.length;i++){
b[i].style.backgroundImage='none';b[i].style.backgroundColor='#000000';b[i].style.color='#FFFFFF'
}}

var newSS, styles='* { background: black ! important; color: white !important } :link, :link * { color: green !important } :visited, :visited * { color: green !important }'; if(document.createStyleSheet) { document.createStyleSheet("javascript:'"+styles+"'"); } else { newSS=document.createElement('link'); newSS.rel='stylesheet'; newSS.href='data:text/css,'+escape(styles); document.getElementsByTagName("head")[0].appendChild(newSS); }

