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(".txt-s { font-size: x-small; line-height:115% }");
		document.writeln(".txt-m { font-size: small; line-height:135% }");
		document.writeln(".txt-ms { font-size: small; line-height:115% }");
		document.writeln(".txt-l { font-size: medium; line-height:135% }");
		document.writeln(".txt-ll { font-size: large; line-height:135% }");
		document.writeln(".news { font-size: small; line-height:115%; padding-bottom: 5px }");		
	}
	 	else
	 	{
			// MAC NETSCAPE
			document.writeln(".txt-s { font-size: small; line-height:115% }");
			document.writeln(".txt-m { font-size: medium; line-height:135% }");
			document.writeln(".txt-ms { font-size: medium; line-height:115% }");
			document.writeln(".txt-l { font-size: large; line-height:135% }");
			document.writeln(".txt-ll { font-size: x-large; line-height:135% }");
			document.writeln(".news { font-size: medium; line-height:115%; padding-bottom: 5px }");	
	 	}

}
else
{
	if( bName == "M")
	{
		// WIN IE
		document.writeln(".txt-s { font-size: x-small; line-height:125% }");
		document.writeln(".txt-m { font-size: small; line-height:145% }");
		document.writeln(".txt-ms { font-size: small; line-height:125% }");
		document.writeln(".txt-l { font-size: medium; line-height:145% }");
		document.writeln(".txt-ll { font-size: large; line-height:145% }");
		document.writeln(".news { font-size: small; line-height:125%; padding-bottom: 5px }");
	}
	else
		{
			// WIN NETSCAPE
			document.writeln(".txt-s { font-size: x-small; line-height:125% }");
			document.writeln(".txt-m { font-size: small; line-height:145% }");
			document.writeln(".txt-ms { font-size: small; line-height:125% }");
			document.writeln(".txt-l { font-size: medium; line-height:145% }");
			document.writeln(".txt-ll { font-size: x-large; line-height:145% }");
			document.writeln(".news { font-size: small; line-height:125%; padding-bottom: 5px }");
		}
}
 document.writeln("--></STYLE>");