// DHTML用にドキュメントの仕様を判別。if ( document.getElementById ) { var archdt = 'a' }// IE 5.x 以降、及び NN 6.x 以降else if ( document.all ) { var archdt = 'b' }// IE 4.x 以前else if ( document.layers ) { var archdt = 'c' }// NN 4.x 以前// OSの種類を判別、取得。if ( navigator.appVersion.indexOf ( 'Win' ) != -1 ) { var archos = 'Win'; }else if ( navigator.appVersion.indexOf ( 'Mac' ) != -1 ) { var archos = 'Mac'; }// Browser名を取得。var archwb = navigator.appName.charAt ( 0 );// BrowserのVersionを取得。var archvr = navigator.appVersion.substr ( 0, 3 );document.open ( );document.writeln ( '<style type="text/css">' );document.writeln ( '<!--' );document.writeln ( 'body { margin: 0px; font-family: "ＭＳ Ｐゴシック", Osaka, sans-serif }' );document.writeln ( '' );if ( archos == 'Win' ) {	if ( archdt == 'c' ) {// Win NN 4.x 以前		document.writeln ( '.text1 { font-size: 11px; line-height: 14px }' );		document.writeln ( '.text2 { font-size: 13px; line-height: 14px }' );		document.writeln ( '.text3 { font-size: 13px; line-height: 16px }' );		document.writeln ( '.text4 { font-size: 14px; line-height: 16px }' );		document.writeln ( '.text5 { font-size: 11px; line-height: 15px }' );		document.writeln ( '.text1b { font-weight: bold; font-size: 11px; line-height: 12px }' );		document.writeln ( '.text2b { font-weight: bold; font-size: 13px; line-height: 14px }' );	} else {// Win IE 、及び Win NN 6.x 以降		document.writeln ( '.text1 { font-size: 10px; line-height: 14px; letter-spacing: 0.04em }' );		document.writeln ( '.text2 { font-size: 12px; line-height: 14px; letter-spacing: 0.04em }' );		document.writeln ( '.text3 { font-size: 12px; line-height: 16px; letter-spacing: 0.04em }' );		document.writeln ( '.text4 { font-size: 13px; line-height: 16px; letter-spacing: 0.04em }' );		document.writeln ( '.text5 { font-size: 10px; line-height: 15px; letter-spacing: 0.04em }' );		document.writeln ( '.text1b { font-weight: bold; font-size: 10px; line-height: 12px; letter-spacing: 0.04em }' );				 			document.writeln ( '.text1c { font-weight: bold; font-size: 6px; line-height: 8px; letter-spacing: 0.04em }' );		document.writeln ( '.text2b { font-weight: bold; font-size: 12px; line-height: 14px; letter-spacing: 0.04em }' );	}} else if ( archos == 'Mac' ) {// Mac	document.writeln ( '.text1 { font-size: 10px; line-height: 14px }' );	document.writeln ( '.text2 { font-size: 12px; line-height: 14px }' );	document.writeln ( '.text3 { font-size: 12px; line-height: 16px }' );	document.writeln ( '.text4 { font-size: 13px; line-height: 16px }' );	document.writeln ( '.text5 { font-size: 10px; line-height: 15px }' );	document.writeln ( '.text1b { font-weight: bold; font-size: 10px; line-height: 12px }' );	document.writeln ( '.text2b { font-weight: bold; font-size: 12px; line-height: 14px }' );}document.writeln ( '' );document.writeln ( 'a { text-decoration: none }' );document.writeln ( 'a:link { color: #0900B7 }' );document.writeln ( 'a:visited { color: #0900B7 }' );document.writeln ( 'a:active { color: #000066 }' );document.writeln ( '-->' );document.writeln ( '</style>' );document.close ( );