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.8em}");
		document.writeln(".e12{font-size:0.9em}");
		document.writeln(".k10{font-Size:0.8em; line-height:130%}");
		document.writeln(".k12{font-Size:0.9em; line-height:150%}");
		document.writeln(".k14{font-Size:1em}");
		document.writeln(".k18{font-Size:1.6em}");
	}
	else
	{
		if( vNum < 5 )
		{
			// MAC NETSCAPE 4.x
			document.writeln(".e10{font-size:0.8em; line-height:130%}");
			document.writeln(".e12{font-size:0.9em; line-height:150%}");
			document.writeln(".k10{font-Size:0.8em; line-height:130%}"); 
			document.writeln(".k12{font-Size:0.9em; line-height:150%}");
			document.writeln(".k14{font-Size:1em; line-height:150%}");
			document.writeln(".k18{font-Size:1.6em; line-height:170%}");
	 	}
	 	else
	 	{
			// MAC NETSCAPE 6.x~
			document.writeln(".e10{font-size:0.8em}");
			document.writeln(".e12{font-size:0.9em}");
			document.writeln(".k10{font-Size:0.8em; line-height:130%}"); 
			document.writeln(".k12{font-Size:0.9em; line-height:150%}");
			document.writeln(".k14{font-Size:1em; line-height:150%}");	
			document.writeln(".k18{font-Size:1.6em; line-height:170%}");	 	
	 	}
	 }

}
else
{
	if( bName == "M")
	{
		// WIN IE
		document.writeln(".e10{font-size:0.7em; line-height:130%}");
		document.writeln(".e12{font-size:0.8em; line-height:150%}");
		document.writeln(".k10{font-Size:0.7em; line-height:150%}");
		document.writeln(".k12{font-Size:0.8em; line-height:150%;}");
		document.writeln(".k14{font-Size:0.9em; line-height:150%;}");
		document.writeln(".k18{font-Size:1em; line-height:170%;}");
	}
	else
	{
		if( vNum < 5 )
		{
			// WIN NETSCAPE 4.x
			document.writeln(".e10{font-size:0.7em; line-height:130%}");
			document.writeln(".e12{font-size:0.8em; line-height:150%}");
			document.writeln(".k10{font-Size:0.7em; line-height:130%}");
			document.writeln(".k12{font-Size:0.8em; line-height:150%}");
			document.writeln(".k14{font-Size:0.9em; line-height:150%}");
			document.writeln(".k18{font-Size:1.6em; line-height:170%}");
		}
		else
		{
			// WIN NETSCAPE 6.x~
			document.writeln(".e10{font-size:0.7em; line-height:130%}");
			document.writeln(".e12{font-size:0.8em; line-height:150%}");
			document.writeln(".k10{font-Size:0.7em;line-height:130%}");
			document.writeln(".k12{font-Size:0.8em; line-height:150%;}");
			document.writeln(".k14{font-Size:0.9em; line-height:150%;}");
			document.writeln(".k18{font-Size:1.6em; line-height:170%;}");		
		}
	}
}
 document.writeln("--></STYLE>");




