<!--
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はOsaka
		if( (bName == "N")&&(vNum<5)){
			document.writeln("BODY,TH,TD {font-family: 'Osaka'; font-size:small; }");
			document.writeln(".f1{font-size:x-small; line-height:130%}");
			document.writeln(".f2{font-size:x-small; line-height:130%}");
			document.writeln(".f3{font-size:x-small; line-height:140%}");
			document.writeln(".f4{font-size:medium; line-height:140%}");
		}else{
			document.writeln("BODY,TH,TD {font-family: 'Osaka'; font-size:small; }");
			document.writeln(".f1{font-size:x-small; line-height:130%}");
			document.writeln(".f2{font-size:x-small; line-height:130%}");
			document.writeln(".f3{font-size:x-small; line-height:130%}");
			document.writeln(".f4{font-size:medium; line-height:120%}");
		}
	}else{
		//WINはＭＳ Ｐゴシック
		document.writeln("BODY,TH,TD {font-family: 'ＭＳ Ｐゴシック'; font-size:small; }");
		document.writeln(".f1{font-size:x-small; line-height:130%}");
		document.writeln(".f2{font-size:x-small; line-height:130%}");
		document.writeln(".f3{font-size:x-small; line-height:130%; letter-spacing:1px}");
		document.writeln(".f4{font-size:medium; line-height:120%; letter-spacing:1px}");
	}
}
document.writeln("--></STYLE>");
//-->

