
//=================================================
// WIN
//=================================================

os   = navigator.appVersion.indexOf("Win");
ver1 = navigator.appVersion.charAt(0);
ver2 = navigator.appVersion.indexOf("5.0");


if ( os >= 0 ) {

	//-------------------------------------------------// IE4
	
	if ( ver1+0 <= 4  &&  ver2+0 < 0 ) {
		document.write("<STYLE TYPE='text/css'>")
		document.write("<!--")
		document.write("    select { font-family:‚l‚r ‚oƒSƒVƒbƒN; }")
		document.write("-->")
		document.write("</STYLE>")
	}
	
	//-------------------------------------------------// NN4
	
	if ( document.layers ) {
		document.write("<STYLE TYPE='text/css'>")
		document.write("<!--")
		document.write("     select { font-family:‚l‚r ‚oƒSƒVƒbƒN; }")
		document.write("        .hr { border : 0px; }")
		document.write("-->")
		document.write("</STYLE>")
	}
	
	//-------------------------------------------------

}

//=================================================
// MAC
//=================================================

os   = navigator.appVersion.indexOf("Mac");
ver1 = navigator.appVersion.charAt(0);
ver2 = navigator.appVersion.indexOf("5.0");

if ( os >= 0 ) {

	//-------------------------------------------------// OS X
	
	document.write("<STYLE TYPE='text/css' MEDIA='screen'>")
	document.write("<!--")
	document.write("    body { font-size:11px; font-family:ƒqƒ‰ƒMƒmŠÛƒS Pro W4, verdana, arial, helvetica, sans-serif, OSAKA; }")
	document.write("      td { font-size:11px; }")
	document.write("      .a { font-size:11px; line-height:20px; }")
	document.write("      .b { font-size:11px; line-height:18px; }")
	document.write("      .c { font-size:13px; line-height:23px; }")
	document.write("      .d { font-size:13px; line-height:19px; }")
	document.write("      .e { font-size:9px;  line-height:11px; }")
	document.write("      .f { font-size:15px; line-height:15px; }")
	document.write("      .s { letter-spacing:-1px; }")
	document.write("   input { font-size:11px; font-family : ƒqƒ‰ƒMƒmŠÛƒS Pro W4, verdana, arial, helvetica, sans-serif; }")
	document.write("textarea { font-size:11px; font-family : ƒqƒ‰ƒMƒmŠÛƒS Pro W4, verdana, arial, helvetica, sans-serif; }")
	document.write("  select { font-size:11px; font-family : ƒqƒ‰ƒMƒmŠÛƒS Pro W4, verdana, arial, helvetica, sans-serif; }")
	document.write("-->")
	document.write("</STYLE>")
	
	
	//-------------------------------------------------// Classic
	
	if ((navigator.userAgent.indexOf("5.2") < 0) && (navigator.userAgent.indexOf("OS X") < 0)) {
	
		document.write("<STYLE TYPE='text/css' MEDIA='screen'>")
		document.write("<!--")
		document.write("    body { font-size:12px; font-family:verdana, arial, helvetica, sans-serif, OSAKA; letter-spacing:0em; }")
		document.write("      td { font-size:12px; }")
		document.write("      .a { font-size:12px; line-height:20px; }")
		document.write("      .b { font-size:12px; line-height:18px; }")
		document.write("      .c { font-size:14px; line-height:23px; }")
		document.write("      .d { font-size:14px; line-height:19px; }")
		document.write("      .e { font-size:10px; line-height:11px; letter-spacing:0px; }")
		document.write("      .f { font-size:17px; line-height:19px; }")
		document.write("      .s { letter-spacing:-1px; }")
		document.write("   input { font-family : OSAKA; }")
		document.write("textarea { font-family : OSAKA; }")
		document.write("  select { font-family : OSAKA; }")
		document.write("-->")
		document.write("</STYLE>")
		
		if ( document.layers ) {
			document.write("<STYLE TYPE='text/css'>")
			document.write("<!--")
			document.write("        .hr { border : 0px; }")
			document.write("-->")
			document.write("</STYLE>")
		}
	
	}
	
	//-------------------------------------------------

}

//=================================================

