<!--
var vNum = navigator.appVersion.charAt(0);
var bName = navigator.appName.charAt(0);
if ( !(bName == "M" && vNum < 4) || !(bName == "N" && vNum < 4)){	//ブラウザが４未満はスタイルシート無効
	document.writeln("<STYLE TYPE='text/css'><!--");
	if(navigator.appVersion.indexOf("Mac") > -1){
		//MAC
		document.writeln("BODY,TH,TD {}");
		
		if( bName == "M"){
			// MAC IE
			document.writeln(".f9{font-size:9px}");
			document.writeln(".f10{font-size:10px}");
			document.writeln(".f12{font-size:12px}");
			document.writeln(".f14{font-size:14px}");
			document.writeln(".f10b{font-size:10px; font-weight:bold}");
			document.writeln(".f12b{font-size:12px; font-weight:bold}");
			document.writeln(".f14b{font-size:14px; font-weight:bold}");
		}else{
			if( vNum < 5 ){
				// MAC NETSCAPE 4.x
				document.writeln(".f9{font-size:9px; line-height:12px}");
				document.writeln(".f10{font-size:10px; line-height:13px}"); 
				document.writeln(".f12{font-size:12px; line-height:15px}");
				document.writeln(".f14{font-size:14px; line-height:17px}");
				document.writeln(".f10b{font-size:10px; line-height:13px; font-weight:bold}"); 
				document.writeln(".f12b{font-size:12px; line-height:15px; font-weight:bold}");
				document.writeln(".f14b{font-size:14px; line-height:17px; font-weight:bold}");
			}else{
				// MAC NETSCAPE 6.x~
				document.writeln(".f9{font-size:9px; line-height:12px}");
				document.writeln(".f10{font-size:10px; line-height:13px}"); 
				document.writeln(".f12{font-size:12px; line-height:15px}");
				document.writeln(".f14{font-size:14px; line-height:17px}");
				document.writeln(".f10b{font-size:10px; line-height:13px; font-weight:bold}"); 
				document.writeln(".f12b{font-size:12px; line-height:15px; font-weight:bold}");
				document.writeln(".f14b{font-size:14px; line-height:17px; font-weight:bold}");
	 		}
		}
	}else{
		//WIN
		document.writeln("BODY,TH,TD {}");

		if( bName == "M"){
			// WIN IE
			//document.writeln("BODY,TH,TD {letter-spacing:1px}");
			document.writeln(".f9{font-size:10px; line-height:12px}");
			document.writeln(".f10{font-size:11px; line-height:13px}");
			document.writeln(".f12{font-size:12px; line-height:15px; letter-spacing:1px}");
			document.writeln(".f14{font-size:14px; line-height:17px; letter-spacing:1px}");
			document.writeln(".f10b{font-size:11px; line-height:13px; font-weight:bold}");
			document.writeln(".f12b{font-size:12px; line-height:15px; letter-spacing:1px; font-weight:bold}");
			document.writeln(".f14b{font-size:14px; line-height:17px; letter-spacing:1px; font-weight:bold}");
		}else{
			if( vNum < 5 ){
				// WIN NETSCAPE 4.x
				document.writeln(".f9{font-size:11px; line-height:12px}");
				document.writeln(".f10{font-size:11px; line-height:13px}");
				document.writeln(".f12{font-size:12px; line-height:15px}");
				document.writeln(".f14{font-size:14px; line-height:17px}");
				document.writeln(".f10b{font-size:11px; line-height:13px; font-weight:bold}");
				document.writeln(".f12b{font-size:12px; line-height:15px; font-weight:bold}");
				document.writeln(".f14b{font-size:14px; line-height:17px; font-weight:bold}");
			}else{
				// WIN NETSCAPE 6.x~
				document.writeln(".f9{font-size:10px; line-height:12px}");
				document.writeln(".f10{font-size:11px; line-height:13px}");
				document.writeln(".f12{font-size:12px; line-height:15px}");
				document.writeln(".f14{font-size:14px; line-height:17px}");
				document.writeln(".f10b{font-size:11px; line-height:13px; font-weight:bold}");
				document.writeln(".f12b{font-size:12px; line-height:15px; font-weight:bold}");
				document.writeln(".f14b{font-size:14px; line-height:17px; font-weight:bold}");
			}
		}
	}
}
document.writeln("--></STYLE>");
//-->
