/*style font_size  www.coocan.com ver1.0a */// バージョン取得 ---------------------------function getBrowserVersion(){str = navigator.appName.toUpperCase();version = 0;appVer  = navigator.appVersion;if (str.indexOf("NETSCAPE") >= 0){s = appVer.indexOf(" ",0);version = eval(appVer.substring(0,s));if (version >= 5) version++;}if (str.indexOf("MICROSOFT") >= 0){appVer  = navigator.userAgent;s = appVer.indexOf("MSIE ",0) + 5;e = appVer.indexOf(";",s);ver_temp = appVer.substring(s,e);ver_b = ver_temp.indexOf("b",0);if(ver_b < 0){version = eval(appVer.substring(s,e));}else if(ver_b >= 0){version = eval(appVer.substring(s,e-1));}}return version;}var vNum = getBrowserVersion();var bName = navigator.appName.charAt(0);document.write("<style type='text/css'><!--");if(navigator.appVersion.indexOf("Mac") > -1){if(bName == "N" && vNum < 5){//for MAC NETSCAPE 4.xdocument.write(".size9px{font-size:9px; line-height: 12px; }");document.write(".size10px{font-size:10px; line-height: 13px; }");document.write(".size12px{font-size:12px; line-height: 16px; }");document.write(".size14px{font-size:14px; line-height: 16px; }");document.write(".size18px{font-size:18px; line-height: 18px; }");}else{//for MAC etcdocument.write(".size9px{font-size:9px; line-height: 12px; }");document.write(".size10px{font-size:10px; line-height: 13px; }");document.write(".size12px{font-size:12px; line-height: 16px; }");document.write(".size14px{font-size:14px; line-height: 17px; }");document.write(".size18px{font-size:18px; line-height: 20px; }");}}else{if(bName == "M"){//for WIN IEdocument.write(".size9px{font-size:10px; line-height: 12px; }");document.write(".size10px{font-size:11px; line-height: 14px; }");document.write(".size12px{font-size:13px; line-height: 16px; }");document.write(".size14px{font-size:15px; line-height: 17px; }");document.write(".size18px{font-size:17px; line-height: 20px; }");}else if(bName == "N"){if(vNum < 5){//for WIN NETSCAPE 4.xdocument.write(".size9px{font-size:11px; line-height: 12px; }");document.write(".size10px{font-size:11px; line-height: 14px; }");document.write(".size12px{font-size:14px; line-height: 16px; }");document.write(".size14px{font-size:15px; line-height: 17px; }");document.write(".size18px{font-size:18px; line-height: 18px; }");}else if(vNum >= 5){//for WIN NETSCAPE 6.x~document.write(".size9px{font-size:10px; line-height: 12px; }");document.write(".size10px{font-size:11px; line-height: 14px; }");document.write(".size12px{font-size:13px; line-height: 16px; }");document.write(".size14px{font-size:15px; line-height: 17px; }");document.write(".size18px{font-size:17px; line-height: 18px; }");}}else{//for etcdocument.write(".size9px{font-size:10px; line-height: 12px; }");document.write(".size10px{font-size:11px; line-height: 14px; }");document.write(".size12px{font-size:13px; line-height: 16px; }");document.write(".size14px{font-size:15px; line-height: 17px; }");document.write(".size18px{font-size:17px; line-height: 18px; }");}}document.write("//--></style>");