

<!--

/*
フォントスタイルの振り分け
*/
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")
	 {
		// MAC IE
		document.writeln(".f9{font-size:9px; line-height:13px}");
		document.writeln(".f10{font-Size:10px; line-height:15px}");
		document.writeln(".f12{font-size:12px; line-height:16px}");

		document.writeln(".title{font-size:24px; line-height:26px;  font-weight:bold}");
		document.writeln(".bltxt{font-size:20px; line-height:22px; font-weight:bold; color:#00000}");	

}
	else
	{
		if( vNum < 5 )
		{
			// MAC NETSCAPE 4.x
		document.writeln(".f9{font-size:9px; line-height:13px}");
		document.writeln(".f10{font-Size:10px; line-height:15px}");
		document.writeln(".f12{font-size:12px; line-height:16px}");

		document.writeln(".title{font-size:24px; line-height:26px; font-weight:bold;}");
		document.writeln(".bltxt{font-size:20px; line-height:22px; font-weight:bold;  color:#00000}");	
	 	}
	 	else
	 	{
			// MAC NETSCAPE 6.x~
		document.writeln(".f9{font-size:9px; line-height:13px}");
		document.writeln(".f10{font-Size:10px; line-height:15px}");
		document.writeln(".f12{font-size:12px; line-height:16px}");

		document.writeln(".title{font-size:24px; line-height:26px;  font-weight:bold}");
		document.writeln(".bltxt{font-size:20px; line-height:22px; font-weight:bold; color:#00000}");	
 	}
 }
}
else
{
	if( bName == "M")
	{
		// WIN IE
		document.writeln(".f9{font-size:10px; line-height:13px}");
		document.writeln(".f10{font-Size:10px; line-height:15px}");
		document.writeln(".f12{font-size:12px; line-height:16px}");

		document.writeln(".title{font-size:24px; line-height:26px;  font-weight:bold}");
		document.writeln(".bltxt{font-size:20px; line-height:22px; font-weight:bold;  color:#00000}");	
	}
	else
	{
		if( vNum < 5 )
		{
			// WIN NETSCAPE 4.x
		document.writeln(".f9{font-size:11px; line-height:13px}");
		document.writeln(".f10{font-Size:11px; line-height:160%}");
		document.writeln(".f12{font-size:12px; line-height:16px}");

		document.writeln(".title{font-size:24px; line-height:26px; font-weight:bold}");
		document.writeln(".bltxt{font-size:20px; line-height:22px; font-weight:bold;  color:#00000}");	

		}
		else
		{
			// WIN NETSCAPE 6.x~
		document.writeln(".f9{font-size:10px; line-height:14px}");
		document.writeln(".f10{font-Size:10px; line-height:15px}");
		document.writeln(".f12{font-size:12px; line-height:14px}");

		document.writeln(".title{font-size:24px; line-height:26px;  font-weight:bold}");
		document.writeln(".bltxt{font-size:20px; line-height:22px; font-weight:bold;  color:#00000}");	

		}
	}
}
 document.writeln("--></STYLE>");


//-->
