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(".e10{font-size:0.7em}");
		document.writeln(".e12{font-size:0.8em}");
		document.writeln(".j10{font-Size:0.7em; line-height:120%}");
		document.writeln(".j12{font-Size:0.8em; line-height:130%}");
		document.writeln(".j14{font-Size:0.95em}");
		document.writeln(".j18{font-Size:1.6em}");
	}
	else
	{
		if( vNum < 5 )
		{
			// MAC NETSCAPE 4.x
			document.writeln(".e10{font-size:0.7em; line-height:120%}");
			document.writeln(".e12{font-size:0.8em; line-height:150%}");
			document.writeln(".j10{font-Size:0.7em; line-height:120%}"); 
			document.writeln(".j12{font-Size:0.8em; line-height:130%}");
			document.writeln(".j14{font-Size:0.95em; line-height:150%}");
			document.writeln(".j18{font-Size:1.6em; line-height:170%}");
	 	}
	 	else
	 	{
			// MAC NETSCAPE 6.x~
			document.writeln(".e10{font-size:0.7em}");
			document.writeln(".e12{font-size:0.8em}");
			document.writeln(".j10{font-Size:0.7em; line-height:120%}"); 
			document.writeln(".j12{font-Size:0.8em; line-height:130%}");
			document.writeln(".j14{font-Size:0.95em; line-height:150%}");	
			document.writeln(".j18{font-Size:1.6em; line-height:170%}");	 	
	 	}
	 }

}
else
{
	if( bName == "M")
	{
		// WIN IE
		document.writeln(".e10{font-size:0.7em; line-height:110%}");
		document.writeln(".e12{font-size:0.8em; line-height:130%}");
		document.writeln(".j10{font-Size:0.7em; line-height:120%}");
		document.writeln(".j12{font-Size:0.8em; line-height:130%;}");
		document.writeln(".j14{font-Size:0.9em; line-height:130%;}");
		document.writeln(".j18{font-Size:1.2em; line-height:180%;}");
	}
	else
	{
		if( vNum < 5 )
		{
			// WIN NETSCAPE 4.x
			document.writeln(".e10{font-size:0.8em; line-height:110%}");
			document.writeln(".e12{font-size:1em; line-height:130%}");
			document.writeln(".j10{font-Size:0.7em; line-height:120%}");
			document.writeln(".j12{font-Size:0.8em; line-height:130%}");
			document.writeln(".j14{font-Size:0.9em; line-height:130%}");
			document.writeln(".j18{font-Size:1.6em; line-height:180%}");
		}
		else
		{
			// WIN NETSCAPE 6.x~
			document.writeln(".e10{font-size:0.7em; line-height:110%}");
			document.writeln(".e12{font-size:0.8em; line-height:130%}");
			document.writeln(".j10{font-Size:0.7em; line-height:125%}");
			document.writeln(".j12{font-Size:0.8em; line-height:130%;}");
			document.writeln(".j14{font-Size:0.9em; line-height:130%;}");
			document.writeln(".j18{font-Size:1.6em; line-height:180%;}");		
		}
	}
}
 document.writeln("--></STYLE>");

