
var vNum = navigator.appVersion.charAt(0);
var bName = navigator.appName.charAt(0);


document.writeln("<STYLE TYPE='text/css'><!--");
if(navigator.appVersion.indexOf("Mac") > -1)
{
	if( bName == "M")
	 {
		// Macintosh IE
		document.writeln(".style_xs{ font-size:9px; line-height:12px;}");
		document.writeln(".style_s{ font-size:10px; line-height:15px;}");
		document.writeln(".style_m{ font-size:12px; line-height:17px;}");
		document.writeln(".style_ml{ font-size:14px; line-height:18px;}");
		document.writeln("a{ color:#666666; text-decoration: none;}");
		document.writeln("a:hover{color: #2255a4;text-decoration: underline;}");
	}
	else
	{
		if( vNum < 5 )
		{
		// Macintosh Netscape 4.x
		document.writeln(".style_xs{font-size:9px; line-height:13px}");
		document.writeln(".style_s{font-size:10px; line-height:15px}"); 
		document.writeln(".style_m{font-size:12px; line-height:17px}");
		document.writeln(".style_ml{font-size:14px; line-height:18px}");
		document.writeln("a{ color:#666666; text-decoration: none;}");
		document.writeln("a:hover{color: #2255a4;text-decoration: underline;}");
	 	}
	 	else
	 	{
		// Macintosh Netscape 6.x~
		document.writeln(".style_xs{font-size:9px; line-height:12px}");
		document.writeln(".style_s{font-size:10px; line-height:15px}"); 
		document.writeln(".style_m{font-size:12px; line-height:17px}"); 
		document.writeln(".style_ml{font-size:14px; line-height:18px}"); 
		document.writeln("a{ color:#666666; text-decoration: none;}");
		document.writeln("a:hover{color: #2255a4;text-decoration: underline;}");
	 	}
	 }

}
else
{
	if( bName == "M")
	{
		// Windows IE
		document.writeln(".style_xs{font-size:10px; line-height:13px}");
		document.writeln(".style_s{font-size:11px; line-height:15px}");
		document.writeln(".style_m{font-size:12px; line-height:18px}");
		document.writeln(".style_ml{font-size:14px; line-height:18px}");
		document.writeln(".bground{background-image: url(http://www.odakyu-dept.co.jp/images_com/bg3.gif); background-repeat: repeat-y}");
		document.writeln("a{ color:#666666; text-decoration: none;}");
		document.writeln("a:hover{color: #2255a4;text-decoration: underline;}");
	}
	else
	{
		if( vNum < 5 )
		{
		// Windows Netscape 4.x
		document.writeln("h1{font-size:8pt; font-weight:normal; line-height:0px; margin-top:4px; margin-bottom:4px; margin-left:0pt;}");
		document.writeln("font-size:7pt;font-weight:normal;line-height: 0px;margin-top:4px;margin-bottom:4px; margin-left:0pt;}");
		document.writeln(".style_xs{font-size:11px; line-height:12px}");
		document.writeln(".style_s{font-size:11px; line-height:15px}");
		document.writeln(".style_m{font-size:12px; line-height:18px}");
		document.writeln(".style_ml{font-size:14px; line-height:18px}");
		document.writeln(".bground{background-image: url(http://www.odakyu-dept.co.jp/images_com/bg3n.gif); background-repeat: repeat-y}");
		document.writeln("a{ color:#666666; text-decoration: none;}");
		document.writeln("a:hover{color: #2255a4;text-decoration: underline;}");
		}
		else
		{
		// Windows Netscape 6.x~ and another browsers
		document.writeln(".style_xs{font-size:10px; line-height:12px}");
		document.writeln(".style_s{font-size:11px; line-height:15px}");
		document.writeln(".style_m{font-size:12px; line-height:18px}");
		document.writeln(".style_ml{font-size:14px; line-height:18px}");
		document.writeln(".bground{background-image: url(http://www.odakyu-dept.co.jp/images_com/bg3n.gif); background-repeat: repeat-y}");
		document.writeln("a{ color:#666666; text-decoration: none;}");
		document.writeln("a:hover{color: #2255a4;text-decoration: underline;}");
	
		}
	}
}
 document.writeln("--></STYLE>");


