// This Script will modify the basic style for text to make the point size fit the screen
// thus allowing for similar results across different monitor platforms and also controls
// link colors, allowing for hover highliting
//var width = window.screen.width;
a = 10;
//if (width <= 800)
//{
// a= 10.75;
//}
//if (width <= 640)
//{
// a = 11.25;
//}
document.writeln("<STYLE TYPE='text/css'><!--");
document.writeln("P { font-family : 'Arial', 'Helvetica', 'Monaco';");
document.writeln("font-size : "+a+"pt;");
document.writeln("font-weight : normal;");
document.writeln("color : black;}");
document.writeln("TD { font-family : 'Arial', 'Helvetica', 'Monaco';");
document.writeln("font-size : "+a+"pt;");
document.writeln("font-weight : normal;");
document.writeln("color : black;}");
document.writeln("LI { font-family : 'Arial', 'Helvetica', 'Monaco';");
document.writeln("font-size : "+a+"pt;");
document.writeln("font-weight : normal;");
document.writeln("color : black;}");
document.writeln("H1 { font-family : 'Arial Black', 'Arial', 'Helvetica';");
document.writeln("font-size : "+Number(a + 1)+"pt;");
document.writeln("text-decoration : none;");
document.writeln("font-weight : normal;");
document.writeln("color : #9F273C;}");
document.writeln("H3 { font-family : 'Arial', 'Helvetica', 'Monaco';");
document.writeln("font-size : "+Number(a + 1)+"pt;");
document.writeln("text-decoration : none;");
document.writeln("font-weight : bold;");
document.writeln("color : #9F273C;}");
document.writeln("H2 { font-family : 'Arial', 'Helvetica', 'Times New I2';");
document.writeln("font-size : "+Number(a + 1)+"pt;");
document.writeln("text-decoration : none;");
document.writeln("font-style : italic;");
document.writeln("font-weight : bold;");
document.writeln("color : black;}");
document.writeln("A:active { font-family : 'Arial', 'Helvetica', 'Monaco';");
document.writeln("font-size : "+a+"pt;");
document.writeln("text-decoration : underline;");
document.writeln("font-weight : normal;");
document.writeln("color : #074D71;}");
document.writeln("A:link { font-family : 'Arial', 'Helvetica', 'Monaco';");
document.writeln("font-size : "+a+"pt;");
document.writeln("text-decoration : underline;");
document.writeln("color : #074D71;}");
document.writeln("A:visited { font-family : 'Arial', 'Helvetica', 'Monaco';");
document.writeln("font-size : "+a+"pt;");
document.writeln("text-decoration : underline;");
document.writeln("font-weight : normal;");
document.writeln("color : #074D71;}");
document.writeln("A:hover { font-family : 'Arial', 'Helvetica', 'Monaco';");
document.writeln("font-size : "+a+"pt;");
document.writeln("text-decoration : underline;");
document.writeln("font-weight : normal;");
document.writeln("color : #c6151f;}");
document.writeln("--></STYLE>");
