var vNum = navigator.appVersion.charAt(0);
var bName = navigator.appName.charAt(0);

document.writeln("<STYLE TYPE='text/css'><!--");
if(navigator.appVersion.indexOf("Mac") > -1){
	if( bName == "M"){
		// MAC IE
		document.writeln(".j9{font-size:60%; line-height:150%}");
		document.writeln(".j10{font-Size:70%; line-height:135%}");
		document.writeln(".j12{font-Size:80%; line-height:140%}");
		document.writeln(".j14{font-Size:100%; line-height:125%}");
		document.writeln(".j18{font-Size:120%; line-height:120%}");
		document.writeln(".e10{font-Size:70%; line-height:135%; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif}");
	}
	else{
		if( vNum < 5 ){
			// MAC NETSCAPE 4.x
			document.writeln(".j9{font-size:80%; line-height:120%}");
			document.writeln(".j10{font-Size:90%; line-height:130%}"); 
			document.writeln(".j12{font-Size:100%; line-height:142%}");
			document.writeln(".j14{font-Size:120%; line-height:184%}");
			document.writeln(".j18{font-Size:150%; line-height:184%}");
			document.writeln(".e10{font-Size:90%; line-height:130%; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif}"); 
		}
		else{
			// MAC NETSCAPE 6.x~
			document.writeln(".j9{font-size:70%; line-height:115%}");
			document.writeln(".j10{font-Size:70%; line-height:145%}");
			document.writeln(".j12{font-Size:90%; line-height:113%}");
			document.writeln(".j14{font-Size:100%; line-height:124%}");
			document.writeln(".j18{font-Size:130%; line-height:105%}");
			document.writeln(".e10{font-Size:70%; line-height:145%; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif}");
		}
	}
}
else{
	if( bName == "M"){
		// WIN IE
		document.writeln(".j9{font-size:60%; line-height:150%}");
		document.writeln(".j10{font-Size:70%; line-height:130%}");
		document.writeln(".j12{font-Size:80%; line-height:130%; letter-spacing:1px}");
		document.writeln(".j14{font-Size:90%; line-height:140%; letter-spacing:1px}");
		document.writeln(".j18{font-Size:105%; line-height:120%}");
		document.writeln(".e10{font-Size:70%; line-height:130%; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif}");
	}
	else{
		if( vNum < 5 ){
			// WIN NETSCAPE 4.x
			document.writeln(".j9{font-size:90%; line-height:130%}");
			document.writeln(".j10{font-size:90%; line-height:140%}");
			document.writeln(".j12{font-Size:110%; line-height:130%}");
			document.writeln(".j14{font-Size:140%; line-height:150%}");
			document.writeln(".j18{font-Size:150%; line-height:160%}");
			document.writeln(".e10{font-size:90%; line-height:140%; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif}");
		}
		else{
			// WIN NETSCAPE 6.x~
			document.writeln(".j9{font-size:60%; line-height:150%}");
			document.writeln(".j10{font-Size:70%; line-height:140%}");
			document.writeln(".j12{font-Size:80%; line-height:120%}");
			document.writeln(".j14{font-Size:90%; line-height:145%}");
			document.writeln(".j18{font-Size:105%; line-height:115%}");
			document.writeln(".e10{font-Size:70%; line-height:140%; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif}");
		}
	}
}
document.writeln("--></STYLE>");