WriteCSS();
function WriteCSS()
{

var Name = navigator.appName;
var Ver = parseInt(navigator.appVersion);
var Os = navigator.platform;

var NN3Up = (Name == "Netscape" && (Ver >= 3 && Ver < 5));
var IE4Up = (Name.indexOf("Microsoft") >= 0 && Ver >= 4);
var NN6Up = (Name == "Netscape" && Ver >= 5);



document.writeln("<style type='text/css'><!--")

if(navigator.appVersion.indexOf("Mac") > 1){

if(IE4Up){ // Mac IE

document.writeln(".l{font-size:14px;line-height:140%}")

document.writeln(".m{font-size:13px;line-height:140%}")

document.writeln(".td{font-size:13px;line-height:140%}")

document.writeln(".mm{font-size:12px;line-height:140%}")

document.writeln(".s{font-size:11px;line-height:140%}")

document.writeln(".ss{font-size:10px}")

	}

if(NN6Up){ // Mac NN 6.x~

document.writeln(".l{font-size:14px;line-height:140%}")

document.writeln(".m{font-size:13px;line-height:140%}")

document.writeln(".td{font-size:13px;line-height:140%}")

document.writeln(".mm{font-size:12px;line-height:140%}")

document.writeln(".s{font-size:11px;line-height:140%}")

document.writeln(".ss{font-size:10px}")

	}

if(NN3Up){ // Mac NN Lower Ver.

document.writeln(".l{font-size:14px;line-height:140%}")

document.writeln(".m{font-size:13px;line-height:140%}")

document.writeln(".td{font-size:13px;line-height:140%}")

document.writeln(".mm{font-size:12px;line-height:140%}")

document.writeln(".s{font-size:11px;line-height:140%}")

document.writeln(".ss{font-size:10px}")

	}

}

else{

if(IE4Up){ // WIN IE

document.writeln(".l{font-size:14px;line-height:140%}")

document.writeln(".m{font-size:13px;line-height:140%}")

document.writeln(".td{font-size:13px;line-height:140%}")

document.writeln(".mm{font-size:12px;line-height:140%}")

document.writeln(".s{font-size:11px;line-height:140%}")

document.writeln(".ss{font-size:10px}")

document.writeln(".input{border-color: #7F9DB9; border-width: 1px; border-style: solid; background-color:#ffffff}")

	}

if(NN6Up){ // WIN NN 6.x~

document.writeln(".l{font-size:14px;line-height:140%}")

document.writeln(".m{font-size:13px;line-height:140%}")

document.writeln(".td{font-size:13px;line-height:140%}")

document.writeln(".mm{font-size:12px;line-height:140%}")

document.writeln(".s{font-size:11px;line-height:140%}")

document.writeln(".ss{font-size:10px}")

	}

if(NN3Up){ // WIN NN Lower Ver.

document.writeln(".l{font-size:15px;line-height:140%}")

document.writeln(".m{font-size:14px;line-height:150%}")

document.writeln(".td{font-size:13px;line-height:140%}")

document.writeln(".mm{font-size:12px;line-height:145%}")

document.writeln(".s{font-size:11px;line-height:140%}")

document.writeln(".ss{font-size:11px}")

	}

}

// COMMON

document.writeln("a:link {text-decoration:underline;color: #0066FF}")

document.writeln("a:visited {text-decoration:underline;color: #0066FF}")

document.writeln("a:hover {text-decoration:underline;color: #0066FF}")

document.writeln("--></STYLE>");

}
