// This script builds the CSS for all browsers

var lightred = "#FF4C4C";
var yellow = "#FFF82C";
var green = "#33FFCC";
var lightblue = "#33CCFF";
var seablue = "#3399FF";
var pink = "#FF33FF";
var pinkyred = "#FF3399";
var silver = "#999999";
var white = "#FFFFFF";
var darkergrey = "#666666";
var fontset = "dungeon,verdana,arial,helvetica";
var smallprintsizepx = '9px';
var smallfontsizepx = '11px';
var mediumfontsizepx = '12px';
var largefontsizepx = '14px';
var linkcolor = "#ff0000"; //red
var activelink = "#3399FF"; //seablue

NS4 = (document.layers);
IE4 = (document.all);

appVer = navigator.appVersion;
IEmac = (IE4 && appVer.indexOf("Mac") != -1);
IE4mac = (IEmac && appVer.indexOf("MSIE 4") != -1);
IE40mac = (IE4mac && appVer.indexOf("4.0;") != -1);
IE45mac = (IE4mac && appVer.indexOf("4.5;") != -1);
NS4mac = (NS4 && appVer.indexOf("Mac") != -1);

if (NS4) {
var smallprintsizepx = '10px';
var smallfontsizepx = '11px';
var mediumfontsizepx = '14px';
var largefontsizepx = '15px';
}

if (NS4mac) {
var smallprintsizepx = '9px';
var smallfontsizepx = '12px';
var mediumfontsizepx = '15px';
var largefontsizepx = '16px';
}


if (IE4mac) {
var smallprintsizepx = '9px';
var smallfontsizepx = '11px';
var mediumfontsizepx = '14px';
var largefontsizepx = '15px';
}

document.write("<style>");
document.write("A,A\:Visited\{font-family\:" + fontset + "\;color\:" + linkcolor + "\;font-size\:" + mediumfontsizepx + "\;font-weight\:bold;text-decoration\:none\}");
document.write("A\:Hover,A\:Active\{font-family\:" + fontset + "\;color\:" + activelink + "\;font-size\:" + mediumfontsizepx + "\;text-decoration\:none\}");

document.write(".gigheader\{font-family\:dungeon,verdana,arial\;color\:" + pinkyred + "\;font-size\:" + largefontsizepx + "\;font-weight\:bold\}");
document.write(".gigheadercenter\{font-family\:dungeon,verdana,arial\;color\:" + yellow + "\;font-size\:" + largefontsizepx + "\;font-weight\:bold\;text-align\:center\}");
document.write("A.gigheader\:Hover,A.gigheader\:active\{font-family\:" + fontset + "\;color\:" + activelink + "\;font-size\:" + mediumfontsizepx + "\;text-decoration\:underline\}");

document.write(".gigcontent\{font-family\:" + fontset + "\;font-weight\:normal\;color\:" + silver + "\;font-size\:" + smallfontsizepx + "\}");
document.write("A.gigcontent,A.gigcontent\:Visited\{font-family\:" + fontset + "\;color\:" + linkcolor + "\;font-size\:" + smallfontsizepx + "\;font-weight\:bold\;text-decoration\:none\}");
document.write("A.gigcontent\:Hover,A.gigcontent\:Active\{font-family\:" + fontset + "\;color\:" + activelink + "\;font-size\:" + smallfontsizepx + "\;text-decoration\:none\;font-weight\:bold\}");

document.write(".content\{font-family\:" + fontset + "\;font-weight\:normal\;color\:" + white + "\;font-size\:" + mediumfontsizepx + "\}");
document.write(".contentcenter\{font-family\:" + fontset + "\;font-weight\:normal\;color\:" + white + "\;font-size\:" + mediumfontsizepx + "\;text-align\:center\}");
document.write("A.content,A.content\:Visited\{font-family\:" + fontset + "\;color\:" + linkcolor + "\;font-size\:" + mediumfontsizepx + "\;font-weight\:bold;text-decoration\:none\}");
document.write("A.content\:Hover,A.content\:Active\{font-family\:" + fontset + "\;color\:" + activelink + "\;font-size\:" + mediumfontsizepx + "\;text-decoration\:none\}");

document.write(".pointhead\{font-family\:arial,helvetica\;font-weight\:bold\;color\:" + lightred + "\;font-size\:" + largefontsizepx + "\}");
document.write(".pointheadcenter\{font-family\:arial,helvetica\;font-weight\:bold\;color\:" + lightred + "\;font-size\:" + largefontsizepx + "\;text-align\:center\}");
document.write(".points\{font-family\:" + fontset + "\;font-weight\:normal\;color\:" + silver + "\;font-size\:" + mediumfontsizepx + "\}");

document.write(".navtext\{font-family\:arial,helvetica\;font-weight\:bold\;color\:" + white + "\;font-size\:" + mediumfontsizepx + "\}");
document.write("A.navtext\:visited,A.navtext,A.navtext\:link,{font-family\:arial,helvetica\;font-weight\:bold\;color\:" + linkcolor + "\;font-size\:" + mediumfontsizepx + "\}");
document.write("A.navtext\:hover\{font-family\:arial,helvetica\;font-weight\:bold\;color\:#FFFFFF\;font-size\:" + mediumfontsizepx + "\;text-decoration\:underline\}");

document.write(".smallprint\{font-family\:" + fontset + "fontset\;color\:" + silver + "\;font-size\:" + smallprintsizepx + "\}");
document.write("A.smallprint,A.smallprint\:visited\{font-family\:" + fontset + "\;color\:" + linkcolor + "\;font-size\:" + smallprintsizepx + "\}");
document.write("A.smallprint\:Hover,A.smallprint\:active\{font-family\:" + fontset + "\;color\:" + activelink + "\;font-size\:" + smallprintsizepx + "}");

document.write("#black\{color\:#000000}");
document.write("#white\{color\:#ffffff}");

document.write("#smallfontsize\{font-size\:" + smallprintsizepx + "\}");
document.write("#blurb\{text-align\:left\;font-family\:times\,serif\;font-size\:" + (smallprintsizepx + 2) + "\;margin-top\:5px\}");
document.write("</style>");

//------>