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")
	 {
		document.writeln(".j9{font-size:9pt}");
		document.writeln(".j10{font-Size:10pt}");
		document.writeln(".j12{font-Size:12pt}");
		document.writeln(".j14{font-Size:14pt}");
		document.writeln(".j16{font-Size:16pt}");
		document.writeln(".j18{font-Size:18pt}");
	}
	else
	{
		if( vNum < 5 )
		{
			document.writeln(".j9{font-size:9pt; line-height:120%}");
			document.writeln(".j10{font-Size:10pt; line-height:115%}"); 
			document.writeln(".j12{font-Size:12pt; line-height:120%}");
			document.writeln(".j14{font-Size:14pt; line-height:125%}");
			document.writeln(".j16{font-Size:16pt}");
			document.writeln(".j18{font-Size:18pt}");
	 	}
	else
	 	{
			document.writeln(".j9{font-size:9pt; line-height:140%}");
			document.writeln(".j10{font-Size:10pt; line-height:140%}"); 
			document.writeln(".j12{font-Size:12pt; line-height:145%}");
			document.writeln(".j14{font-Size:14pt; line-height:140%}");	 	
			document.writeln(".j16{font-Size:16pt}");
			document.writeln(".j18{font-Size:18pt}");
	 	}
	 }

}
	else
{
	if( bName == "M")
	{
		document.writeln(".j9{font-size:9pt; line-height:140%}");
		document.writeln(".j10{font-Size:10pt; line-height:140%}");
		document.writeln(".j12{font-Size:11pt; line-height:140%}");
		document.writeln(".j14{font-Size:14pt; line-height:130%}");
		document.writeln(".j16{font-Size:16pt}");
		document.writeln(".j18{font-Size:18pt}");
	}
	else
	{
		if( vNum < 5 )
		{
			document.writeln(".j9{font-size:11pt; line-height:130%}");
			document.writeln(".j10{font-Size:11pt; line-height:135%}");
			document.writeln(".j12{font-Size:12pt; line-height:140%}");
			document.writeln(".j14{font-Size:15pt; line-height:150%}");
			document.writeln(".j16{font-Size:17pt}");
			document.writeln(".j18{font-Size:19pt}");
		}
		else
		{
			document.writeln(".j9{font-size:10pt; line-height:130%}");
			document.writeln(".j10{font-Size:11pt; line-height:135%}");
			document.writeln(".j12{font-Size:13pt; line-height:150%}");
			document.writeln(".j14{font-Size:14pt; line-height:145%}");
			document.writeln(".j16{font-Size:16pt}");
			document.writeln(".j18{font-Size:18pt}");
		
		}
	}
}
 document.writeln("--></STYLE>");


