// set css variables
if (navigator.appVersion.indexOf("Mac") != -1) {
   if (navigator.appName=='Netscape' && navigator.appVersion.substring(0,1)==4) {
      menuFontSize = 11;
      menuFontFamily = 'Helvetica, Verdana, Arial, "sans serif"';
   } else {
      menuFontSize = 9;
      menuFontFamily = 'Helvetica, Verdana, Arial, "sans serif"';
   }
} else {
   if (navigator.appName=='Netscape' && navigator.appVersion.substring(0,1)==4) {
      menuFontSize = 8;
      menuFontFamily = 'Verdana, Arial, Helvetica, "sans serif"';
   } else {
      menuFontSize = 8;
      menuFontFamily = 'Verdana, Arial, Helvetica, "sans serif"';
   }
}

// write css styles to document using platform-dependent variables set above
document.write('<style>');

document.write('.menu { text-decoration: none; font-family: ' + menuFontFamily + '; font-size: ' +  menuFontSize + 'pt; font-weight: 900; color: #949493; letter-spacing: 1pt} \n'); // letter-spacing doesn't work on NN4
document.write('.menu a:link {  color: #949493; text-decoration: none}');
document.write('.menu a:visited {  color: #949493; text-decoration: none}');
document.write('.menu a:hover {  color: #F7C94C; text-decoration: none}');
document.write('.menu a:active {  color: #F7C94C; text-decoration: none}');

document.write('.footer { text-decoration: none; font-family: ' + menuFontFamily + '; font-size: ' +  menuFontSize + 'pt; font-weight: 900; color: #949493} \n'); // letter-spacing doesn't work on NN4
document.write('.footer a:link {  color: #949493; text-decoration: none}');
document.write('.footer a:visited {  color: #949493; text-decoration: none}');
document.write('.footer a:hover {  color: #F7C94C; text-decoration: none}');
document.write('.footer a:active {  color: #F7C94C; text-decoration: none}');

document.write('.backnext { text-decoration: none; font-family: ' + menuFontFamily + '; font-size: ' +  menuFontSize + 'pt; font-weight: normal; color: #949493; letter-spacing: 1pt} \n'); // letter-spacing doesn't work on NN4
document.write('.backnext a:link {  color: #949493; text-decoration: none} \n');
document.write('.backnext a:visited {  color: #949493; text-decoration: none} \n');
document.write('.backnext a:hover {  color: #F7C94C; text-decoration: none} \n');
document.write('.backnext a:active {  color: #F7C94C; text-decoration: none} \n');

document.write('.normal { text-decoration: none; font-family: Times New Roman, Times, "serif"; font-size: ' +  menuFontSize + 'pt; font-weight: normal; letter-spacing: 1pt} \n'); // colors are specified on a per-page basis

document.write('.category { text-decoration: none; font-family: ' + menuFontFamily + '; font-size: ' +  menuFontSize + 'pt; font-weight: normal; color: #C94011; letter-spacing: 1pt} \n'); // colors are specified on a per-page basis

document.write('.award { text-decoration: none; font-family: Times New Roman, Times, "serif"; font-size: ' +  menuFontSize + 'pt; font-weight: normal; color: #C94011; letter-spacing: 1pt} \n'); // letter-spacing doesn't work on NN4
document.write('.award a:link {  color: #A63813; text-decoration: none} \n');
document.write('.award a:visited {  color: #A63813; text-decoration: none} \n');
document.write('.award a:hover {  color: #F7C94C; text-decoration: none} \n');
document.write('.award a:active {  color: #F7C94C; text-decoration: none} \n');


document.write('</style>');
