//This file defines all the styles

var styleStart="<style type='text/css'><!--";

//to display submenu links with the same size in all browsers
if(document.layers)
var submenu="#submenu {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px;	font-style: normal;font-weight: bold;color: #FFFFFF}";
else
var submenu="#submenu {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px;	font-style: normal;font-weight: bold;color: #FFFFFF}";

//to display footer links with the same size in all browsers
if(document.layers)
var linkFooter="#linkFooter {font-family: Arial, Helvetica, sans-serif; font-size: 9px;font-style: normal;font-weight: normal;color: #000000}";
else
var linkFooter="#linkFooter {font-family: Arial, Helvetica, sans-serif; font-size: 9px;font-style: normal;font-weight: normal;color: #000000}";

//to display content links with the same size in all browsers
if(document.layers)
var linkContent="#linkContent {font-family: Arial, Helvetica, sans-serif; font-size: 12px;font-style: normal;font-weight: bold;color: #1C60AB}";
else
var linkContent="#linkContent {font-family: Arial, Helvetica, sans-serif; font-size: 12px;font-style: normal;font-weight: bold;color: #1C60AB}";

//if IE or Netscape 4.0, position off screen to avoid populating layer positions twice on the page - resolves flickering submenu problem
if(document.all || document.layers)
{
	var prognavStyle="#prognav {position:absolute; left:537px; top:48px; width:475px;height:40px; z-index:1; visibility:hidden}";

	var affiliatenavStyle="#affiliatenav {position:absolute; left:537px; top:48px; width:475px;height:40px; z-index:1; visibility:hidden}";

	var contactnavStyle="#contactnav {position:absolute; left:537px; top:48px; width:475px;height:40px; z-index:1; visibility:hidden}";
}
//if Netscape 6.0, do not need to position off screen 
else
{
	var prognavStyle="#prognav {position:absolute; left:537px; top:48px; width:475px;height:40px; z-index:1; visibility:hidden}";

	var affiliatenavStyle="#affiliatenav {position:absolute; left:537px; top:48px; width:475px;height:40px; z-index:1; visibility:hidden}";

	var contactnavStyle="#contactnav {position:absolute; left:537px; top:48px; width:475px;height:40e..px; z-index:1; visibility:hidden}";
}

//When a new element is added to the menu create a new variable. It is assumed that the new div id="newnav"
//var newnavStyle="#newnav {position:absolute; left:348px; top:145px; width:550px;height:53px; z-index:1; visibility:hidden}";

var styleEnd="--></style>";


document.write(styleStart);
document.write(submenu);
document.write(linkFooter);
document.write(linkContent);

document.write(prognavStyle);

document.write(affiliatenavStyle);

document.write(contactnavStyle);
//For the newnav add the following line of code
//document.write(newnavStyle);

document.write(styleEnd);
