var      browserName = navigator.appName;
var       browserVer = parseFloat(navigator.appVersion);
var              NS3 = ((browserName == "Netscape")&&(browserVer >= 3.0 && browserVer < 4.0)) ? 1 : 0;
var              NS4 = (document.layers) ? 1 : 0;
var              NS6 = (document.getElementById) ? 1 : 0;
var               NS = (NS3 || NS4 || NS6) ? 1 : 0;
var          NSdhtml = (NS4 || NS6) ? 1 : 0;
var              IE3 = ((browserName == "Microsoft Internet Explorer")&&(browserVer >= 3.0 && browserVer < 4.0)) ? 1 : 0;
var              IE4 = (document.all) ? 1 : 0;
var	             IE5 = ((navigator.appVersion.charAt(22) == "5") && IE4)?1:0;
var               IE = (IE3 || IE4 || IE5) ? 1 : 0;
var          IEdhtml = (IE4 || IE5) ? 1 : 0;
var            isMac = (navigator.appVersion.indexOf("Mac") != -1) ? 1 : 0;
var          isTrans = (NS4 || (IE4 && !isMac)) ? 1 : 0;
var          isDHTML = (NSdhtml || IEdhtml) ? 1 : 0;


if ((isMac) && (!IE5))
{ 
   offset = 3;
}
else
{ 
   offset = 0;
}

document.write("<style TYPE=\"text/css\">")
document.write("<!-- ");
document.write(".navTitle             { Color: #000000; Font-Family: Arial, Helvetica, Sans-Serif; Font-Size: " + (16 + offset) + "pt; Font-Weight: bold; Text-Decoration: none; }");
document.write(".navChoices           { Color: #000000; Font-Family: Arial, Helvetica, Sans-Serif; Font-Size: " + (12 + offset) + "pt; Font-Weight: normal; Text-Decoration: none; }");
document.write(".pageHeadline         { Color: #00328b; Font-Family: Arial, Helvetica, Sans-Serif; Font-Size: " + (24 + offset) + "pt; Font-Weight: bold; Text-Decoration: none; }");
document.write(".pageSubtitle         { Color: #00328b; Font-Family: Arial, Helvetica, Sans-Serif; Font-Size: " + (10 + offset) + "pt; Font-Weight: bold; Text-Decoration: none; }");
document.write(".pageText             { Color: #000000; Font-Family: Arial, Helvetica, Sans-Serif; Font-Size: " + (10 + offset) + "pt; Font-Weight: normal; Text-Decoration: none; }");
document.write("//--> ");
document.write("</style>");
