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

if(navigator.appVersion.indexOf("Mac") > 1){
	// Macintosh
	document.writeln(".rom9{font-Size:9px}")
	document.writeln(".rom10{font-Size:10px}")
	document.writeln(".rom11{font-Size:11px}")
	document.writeln(".rom12{font-Size:12px}")
	document.writeln(".jpn8{font-Size:8px}")
	document.writeln(".jpn9{font-Size:9px}")
	document.writeln(".jpn10{font-Size:10px}")
	document.writeln(".jpn12{font-Size:12px}")
}
else{
	// Windows and Others
	document.writeln(".rom9{font-size:9px; line-height:11px}")
	document.writeln(".rom10{font-size:10px; line-height:12px}")
	document.writeln(".rom11{font-size:11px; line-height:13px}")
	document.writeln(".rom12{font-size:12px; line-height:15px}")
	document.writeln(".jpn8{font-Size:9px;  line-height:13px}")
	document.writeln(".jpn9{font-size:10px; line-height:13px}")
	document.writeln(".jpn10{font-size:12px; line-height:15px}")
	document.writeln(".jpn12{font-size:14px; line-height:17px}")
}

document.writeln(".blank2{font-size:2px; line-height:2px}")
document.writeln(".blank3{font-size:3px; line-height:3px}")
document.writeln(".blank4{font-size:4px; line-height:4px}")
document.writeln(".blank5{font-size:5px; line-height:5px}")
document.writeln(".blank10{font-size:10px; line-height:10px}")
document.writeln(".blank15{font-size:15px; line-height:15px}")
document.writeln(".blank20{font-size:20px; line-height:20px}")

//document.writeln(".pe9{font-size:9px; line-height:15px}")
//document.writeln(".navi{font-size:30px; line-height:0px}")
//document.writeln(".dot{font-size:6px; line-height:0px}")

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

//document.writeln("textarea,input{font-size:10px; border-width:0px}");

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

