<!--
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){
		if( (bName == "N")&&(vNum<5)){
			// MAC NETSCAPE 4
			document.writeln("BODY,TH,TD {font-family: 'Osaka'; font-size:small;}");
			document.writeln(".text9{font-size:xx-small; line-height:130%;}");
			document.writeln(".text10{font-size:x-small; line-height:130%;}");
			document.writeln(".text12{font-size:small; line-height:140%;}");
			document.writeln(".text14{font-size:medium; line-height:140%;}");
		}else{
			document.writeln("BODY,TH,TD {font-family: 'Osaka'; font-size:small;}");
			document.writeln(".text9{font-size:xx-small; line-height:130%;}");
			document.writeln(".text10{font-size:x-small; line-height:130%;}");
			document.writeln(".text12{font-size:small; line-height:130%;}");
			document.writeln(".text14{font-size:medium; line-height:120%;}");
		}
	}else{//Windows
		document.writeln("BODY,TH,TD {font-family: 'ＭＳ Ｐゴシック'; font-size:small;}");
		document.writeln(".text9{font-size:xx-small; line-height:130%;}");
		document.writeln(".text10{font-size:x-small; line-height:130%;}");
		document.writeln(".text12{font-size:small; line-height:130%; letter-spacing:1px;}");
		document.writeln(".text14{font-size:medium; line-height:120%; letter-spacing:1px;}");
	}
}
document.writeln("--></STYLE>");
//-->

