

/**********************************************
	フォントフェイス設定
**********************************************/
document.writeln("<STYLE TYPE='text/css'><!--")

if(navigator.appVersion.indexOf("Mac") > 1){
	// MACINTOSH
	document.writeln(".e9{font-Size:9px}")
	document.writeln(".e10{font-Size:10px}")
	document.writeln(".e11{font-Size:11px}")
	document.writeln(".e12{font-Size:12px}")
	document.writeln(".e13{font-Size:13px}")
	document.writeln(".e18{font-size:10px; line-height:18px}")
	document.writeln(".j9{font-Size:9px}")
	document.writeln(".j10{font-Size:10px}")
	document.writeln(".j11{font-Size:11px}")
	document.writeln(".j12{font-Size:12px}")
	document.writeln(".j32{font-Size:32px}")
}
else{
	// WINDOWS AND OTHERS
	document.writeln(".e9{font-size:9px; line-height:11px}")
	document.writeln(".e10{font-size:10px; line-height:12px}")
	document.writeln(".e11{font-size:11px; line-height:13px}")
	document.writeln(".e12{font-size:12px; line-height:15px}")
	document.writeln(".e13{font-size:13px; line-height:15px}")
	document.writeln(".e18{font-size:10px; line-height:18px}")
	document.writeln(".j9{font-size:10px; line-height:12px}")
	document.writeln(".j10{font-size:11px; line-height:13px}")
	document.writeln(".j11{font-size:11px; line-height:13px}")
	document.writeln(".j12{font-size:12px; line-height:15px}")
	document.writeln(".j32{font-size:32px; line-height:35px}")
}

document.writeln("a:link{text-decoration:none}");
document.writeln("a:visited{text-decoration:none}");
document.writeln("a:active{text-decoration:none}");

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

