<!--

// Win IE,NS4,NS6 / Mac IE,NS4,NS6 / OTHER の7タイプ

var OsType = "OS_OTHER";
var BrType = "BR_OTHER";
var IEVer = navigator.userAgent.substr( navigator.userAgent.indexOf( "MSIE" ) + 5 , 3 );
var NSVer = navigator.userAgent.substring( 8 , 11 );		//NSバージョン（6以上かどうか）

//______________________________________________OS
if( navigator.userAgent.indexOf( "Win" ) >= 0 ){
	OsType = "Win";
}
else if( navigator.userAgent.indexOf( "Mac" ) >= 0 ){
	OsType = "Mac";
}

//______________________________________________BR
if( navigator.appName == "Microsoft Internet Explorer" ){
	if( IEVer >= 4 ){
		BrType = "IE";
	}
}
else if( navigator.appName == "Netscape" ){
	if( NSVer >= 4 && NSVer < 5 ){
		BrType = "NS4";
	}
	else if( NSVer >= 5 ){
		BrType = "NS6";
	}
}

//______________________________________________CSS
with( document ){
	write("<STYLE TYPE='text/css'><!--");

// Win・Mac 共通
	// 本文内リンク　リンクカラー：グリーン
		write("a.link{ color:#0052CC; text-decoration: underline; }");
		write("a.link:visited{ color:#0052CC; text-decoration: underline; }");
		write("a.link:hover{ color:#FF6600; text-decoration: underline; }");
	//タイトル・サブタイトルイメージ
		write("h1{ margin:0; }");
		write("h2{ margin:0; }");
// Win
	if( OsType == "Win" ){
		if( BrType == "IE" ){
			write(".L{ color:#333333; font-size:100%; line-height:150%; }" );
			write(".M{ color:#333333; font-size:90%; line-height:140%; }" );
			write(".S{ color:#333333; font-size:80%; line-height:130%; }" );
		}
		else if( BrType == "NS4" ){
			write(".L{ color:#333333; font-size:12pt; line-height:150%; }" );
			write(".M{ color:#333333; font-size:10pt; line-height:140%; }" );
			write(".S{ color:#333333; font-size:8pt; line-height:130%; }" );
		}
		else if( BrType == "NS6" ){
			write(".L{ color:#333333; font-size:12pt; line-height:150%; }" );
			write(".M{ color:#333333; font-size:10pt; line-height:140%; }" );
			write(".S{ color:#333333; font-size:8pt; line-height:120%; }" );
		}
	}

// Mac
	if( OsType == "Mac" ){
		if( BrType == "IE" ){
			write(".L{ color:#333333; font-size:120%; line-height:160%; }" );
			write(".M{ color:#333333; font-size:100%; line-height:150%; }" );
			write(".S{ color:#333333; font-size:80%; line-height:140%; }" );
		}
		else if( BrType == "NS4" ){
			write(".L{ color:#333333; font-size:14pt; line-height:160%; }" );
			write(".M{ color:#333333; font-size:12pt; line-height:150%; }" );
			write(".S{ color:#333333; font-size:10pt; line-height:140%; }" );
		}
		else if( BrType == "NS6" ){
			write(".M{ color:#333333; font-size:14pt; line-height:160%; }" );
			write(".M{ color:#333333; font-size:12pt; line-height:150%; }" );
			write(".S{ color:#333333; font-size:10pt; line-height:140%; }" );
		}
	}

	write("--></STYLE>") ;
}

//-->
