// Style sheet
document.write("<style type=\"text/css\">");

// Body (general)
document.write("body{color: #666666; background-color: #000000; font-family: verdana; font-size: small;}");

// Links (general)
document.write("a:link {color: #FBFF08; text-decoration: none;}");
document.write("a:active {color: #FBFF08; text-decoration: none;}");
document.write("a:visited {color: #FBFF08; text-decoration: none;}");
document.write("a:hover {color: #FFFFFF; text-decoration: none;}");


// Links (header)
document.write("a.headerLink:link {color: #FBFF08;}");
document.write("a.headerLink:active {color: #FBFF08;}");
document.write("a.headerLink:visited {color: #FBFF08;}");
document.write("a.headerLink:hover {color: #000000;}");

// Links (link page)
document.write("a.link:link {color: #FBFF08; font-weight: bold;}");
document.write("a.link:active {color: #FBFF08; font-weight: bold;}");
document.write("a.link:visited {color: #FBFF08; font-weight: bold;}");
document.write("a.link:hover {color: #FFFFFF; font-weight: bold;}");

// Spans
document.write("span.ksplug {font-size: x-small;}");

// End style sheet
document.write("</style>");