var vNum = navigator.appVersion.charAt(0);
var bName = navigator.appName.charAt(0);

document.writeln("<STYLE TYPE='text/css'><!--");
document.writeln("A:link { text-decoration:none; }");
document.writeln("A:visited { text-decoration:none; }");
document.writeln("A:active { text-decoration:none; }");
document.writeln("A:hover { text-decoration:underline; }");
if(navigator.appVersion.indexOf("Mac") > -1)
{
	if( bName == "M")
	{
		// MAC IE
		document.writeln(".e10{font-size:11px; line-height:17px}");
		document.writeln(".e10_02{font-size:11px; line-height:13px}");
		document.writeln(".e13{font-size:13px;}");
		document.writeln(".e14{font-size:14px}");
	}
	else
	{
		if( vNum < 5 )
		{
			// MAC NETSCAPE 4.x
			document.writeln(".e10{font-size:11px; line-height:18px}");
			document.writeln(".e10_02{font-size:11px; line-height:12px}");
			document.writeln(".e13{font-size:13px;}");
			document.writeln(".e14{font-size:14px;}");
		}
		else
		{
			// MAC NETSCAPE 6.x~
			document.writeln(".e10{font-size:11px line-height:18px}");
			document.writeln(".e10_02{font-size:11px; line-height:12px}");
			document.writeln(".e13{font-size:13px;}");
			document.writeln(".e14{font-size:14px}");
		}
	}

}
else
{
	if( bName == "M")
	{
		// WIN IE
		document.writeln(".e10{font-size:11px; line-height:20px}");
		document.writeln(".e10_02{font-size:11px; line-height:15px}");
		document.writeln(".e13{font-size:13px;}");
		document.writeln(".e14{font-size:14px;}");
	}
	else
	{
		if( vNum < 5 )
		{
			// WIN NETSCAPE 4.x
			document.writeln(".e10{font-size:11px; line-height:19px}");
			document.writeln(".e10_02{font-size:11px; line-height:14px}");
			document.writeln(".e13{font-size:15px;}");
			document.writeln(".e14{font-size:16px;}");
		}
		else
		{
			// WIN NETSCAPE 6.x~
			document.writeln(".e10{font-size:11px; line-height:20px}");
			document.writeln(".e10_02{font-size:11px; line-height:15px}");
			document.writeln(".e13{font-size:13px;}");
			document.writeln(".e14{font-size:14px;}");
		}
	}
}
document.writeln("--></STYLE>");

