
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")
	 {
		// Macintosh IE
		document.writeln(".foot{font-size:9px; line-height:10px;}");
	}
	else
	{
		if( vNum < 5 )
		{
			// Macintosh Netscape 4.x
			document.writeln(".foot{font-size:9px; line-height:12px;}");
			document.writeln(".str{font-size:12px; line-height:1.5; padding:0px;}");
			document.writeln(".tdl{font-size:12px; line-height:1.5; padding:0px;}");
			document.writeln(".tdr{font-size:12px; line-height:1.5; padding:0px;}");
			document.writeln(".tdb{font-size:12px; line-height:1.5; padding:0px;}");
	 	}
	 	else
	 	{
			// Macintosh Netscape 6.x~
			document.writeln(".foot{font-size:9px; line-height:10px;}");
	 	}
	 }

}
else
{
	if( bName == "M")
	{
		// Windows IE
		document.writeln(".foot{font-size:10px; line-height:10px;}");
	}
	else
	{
		if( vNum < 5 )
		{
			// Windows Netscape 4.x
			document.writeln(".foot{font-size:11px;}");
			document.writeln(".menu{font-size:11px; line-height:15px;}");
			document.writeln(".str{font-size:14px; line-height:1.5; padding:0px;}");
			document.writeln(".tdl{font-size:12px; line-height:1.5; padding:0px;}");
			document.writeln(".tdr{font-size:12px; line-height:1.5; padding:0px;}");
			document.writeln(".tdr{font-size:12px; line-height:1.5; padding:0px;}");
		}
		else
		{
			// Windows Netscape 6.x~ and another browsers
			document.writeln(".foot{font-size:11px;}");
			document.writeln(".menu{font-size:11px; line-height:15px;}");		
		}
	}
}
 document.writeln("--></STYLE>");
