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(navigator.userAgent.indexOf("Safari") > -1)
	 {
		// MAC Safari
		document.writeln(".textXS{font-Size:60%; line-height:120%;}");
		document.writeln(".textS{font-Size:75%; line-height:120%;}");
		document.writeln(".textM{font-Size:90%; line-height:120%;}");
		document.writeln(".textL{font-Size:110%; line-height:120%;}");
	}
	else if( bName == "M")
	 {
		// MAC IE
		document.writeln(".textXS{font-Size:70%; line-height:120%;}");
		document.writeln(".textS{font-Size:85%; line-height:120%;}");
		document.writeln(".textM{font-Size:100%; line-height:120%;}");
		document.writeln(".textL{font-Size:120%; line-height:120%;}");
	}
	else
	{
		if( vNum < 5 )
		{
			// MAC NETSCAPE 4.x
			document.writeln(".textXS{font-Size:90%; line-height:120%;}");
			document.writeln(".textS{font-Size:100%; line-height:120%;}");
			document.writeln(".textM{font-Size:120%; line-height:140%;}");
			document.writeln(".textL{font-Size:140%; line-height:160%;}");
	 	}
	 	else
	 	{
			// MAC NETSCAPE 6.x~
			document.writeln(".textXS{font-Size:70%; line-height:120%;}");
			document.writeln(".textS{font-Size:85%; line-height:120%;}");
			document.writeln(".textM{font-Size:100%; line-height:120%;}");
			document.writeln(".textL{font-Size:120%; line-height:120%;}");
	 	}
	 }

}
else
{
	if( bName == "M")
	{
		// WIN IE
		document.writeln(".textXS{font-Size:75%; line-height:120%;}");
		document.writeln(".textS{font-Size:80%; line-height:120%;}");
		document.writeln(".textM{font-Size:100%; line-height:120%;}");
		document.writeln(".textL{font-Size:120%; line-height:120%;}");
	}
	else
	{
		if( vNum < 5 )
		{
			// WIN NETSCAPE 4.x
			document.writeln(".textXS{font-Size:100%; line-height:120%;}");
			document.writeln(".textS{font-Size:110%; line-height:130%;}");
			document.writeln(".textM{font-Size:140%; line-height:140%;}");
			document.writeln(".textL{font-Size:150%; line-height:160%;}");
		}
		else
		{
			// WIN NETSCAPE 6.x~
			document.writeln(".textXS{font-Size:75%; line-height:120%;}");
			document.writeln(".textS{font-Size:80%; line-height:120%;}");
			document.writeln(".textM{font-Size:100%; line-height:120%;}");
			document.writeln(".textL{font-Size:120%; line-height:120%;}");
		
		}
	}
}
 document.writeln("--></STYLE>");