// 本文のテキストのサイズを統一
var hover='00ffff';
var font='10';
var line='140%';
var ua = navigator.userAgent

if((ua.indexOf('Gecko')!=-1 ) || navigator.appName.charAt(0)!='N' && navigator.appVersion.charAt(0)>=4)
{
document.write('<STYLE TYPE="TEXT/CSS"><!--');
document.write('a:hover{color:00ccff;}');
document.write('a{text-decoration:none;}');
document.write('body{font-size:10pt;line-height: 140%;}');
document.write('h1{font-size:18pt;line-height: 150%;}');
document.write('td{font-size:9pt;line-height: 150%;}');
document.write('th{font-size:9pt;line-height: 150%;}');
document.write('--></STYLE>');
}

