var vNum = navigator.appVersion.charAt(0);
var bName = navigator.appName.charAt(0);
var bVer = navigator.userAgent;

document.writeln("<STYLE TYPE='text/css'><!--");
if(navigator.appVersion.indexOf("Mac") > -1){
	if( bName == "M"){
		// MAC IE
		document.writeln(".j10{font-Size:57%; line-height:130%}");
		document.writeln(".j11{font-Size:65%; line-height:130%}");
		document.writeln(".j12{font-Size:70%; line-height:140%}");
		document.writeln(".j13{font-Size:80%; line-height:145%}");
	}
	else{
		if(bVer.indexOf("Safari") > -1){
		// MAC Safari
		document.writeln(".j10{font-Size:60%; line-height:140%}");
		document.writeln(".j11{font-Size:65%; line-height:145%}");
		document.writeln(".j12{font-Size:75%; line-height:145%}");
		document.writeln(".j13{font-Size:80%; line-height:150%}");
		}
		else{
			// MAC NETSCAPE 7
			document.writeln(".j10{font-Size:65%; line-height:135%}");
			document.writeln(".j11{font-Size:75%; line-height:125%}");
			document.writeln(".j12{font-Size:80%; line-height:135%}");
			document.writeln(".j13{font-Size:90%; line-height:140%}");
		}
	}
}
else{
	if( bName == "M"){
		// WIN IE
		document.writeln(".j10{font-Size:65%; line-height:145%}");
		document.writeln(".j11{font-Size:70%; line-height:140%}");
		document.writeln(".j12{font-Size:75%; line-height:150%; letter-spacing:1px}");
		document.writeln(".j13{font-Size:90%; line-height:155%; letter-spacing:1px}");
	}
	else{
		// WIN NETSCAPE 7
		document.writeln(".j10{font-Size:66%; line-height:140%}");
		document.writeln(".j11{font-Size:72%; line-height:130%}");
		document.writeln(".j12{font-Size:78%; line-height:140%; letter-spacing:1px}");
		document.writeln(".j13{font-Size:85%; line-height:150%; letter-spacing:1px}");
	}
}
document.writeln("--></STYLE>");