/*-------スタイルシートの振り分け-------*/

mac=(navigator.appVersion.indexOf('Mac')!=-1)?true:false;
ie=(navigator.appName.charAt(0) == "M")?true:false;

document.write("<style type=\"text/css\">");
document.write("<!--");

if(mac){
	//FOR MAC IE NS
	document.write(".size2 { font-size:10px; line-height:15px; }");
	document.write(".size3 { font-size:12px; line-height:18px; }");
	document.write(".size4 { font-size:14px; line-height:20px; }");
	document.write("a:link { text-decoration:underline; color:#0F8888; }");
	document.write("a:hover { text-decoration:underline; color:#E68600; }");
	document.write("body { font-family: ＭＳ Ｐゴシック, Osaka, ヒラギノ角ゴ Pro W3; }");

}
else{
	if(ie){
	//FOR WINDOWS IE
	document.write(".size2 { font-size:10px; line-height:15px; }");
	document.write(".size3 { font-size:12px; line-height:18px; }");
	document.write(".size4 { font-size:14px; line-height:20px; }");
	document.write("a:link { ttext-decoration:underline; color:#0F8888; }");
	document.write("a:hover { text-decoration:underline; color:#E68600; }");
	}
	else{
	//FOR WIN NS
	document.write(".size2 { font-size:11px; line-height:15px; }");
	document.write(".size3 { font-size:12px; line-height:18px; }");
	document.write(".size4 { font-size:14px; line-height:20px; }");
	document.write("a:link { text-decoration:underline; color:#0F8888; }");
	document.write("a:hover { text-decoration:underline; color:#E68600; }");
}
}
document.write("-->");
document.write("</style>")
