document.write("<style type='text/css'><!--");


var agent = navigator.userAgent;
var appve = navigator.appVersion;
var appna = navigator.appName;

var userOs = null;
var browser = null;
var version = null;

if ( agent.indexOf('Win') != -1 ) {
	userOs = "Win";
} else if ( agent.indexOf('Mac') != -1 ) {
	userOs = "Mac";
} else {
	userOs = "Other";
}

if ( agent.indexOf('Opera') != -1 ){
	browser = "OPERA";
	version = agent.substring((agent.indexOf('Opera') + 6),(agent.indexOf('Opera') + 7));
} else if ( appna == "Microsoft Internet Explorer" ) {
	browser = "MSIE";
	version = agent.substring((agent.indexOf('MSIE') + 5),(agent.indexOf('MSIE') + 8));
} else if ( appna == "Netscape" ) {
	browser = "NN";
	version = appve.substring( 0,1 );
}

if ( userOs == "Win" && ( browser == "MSIE" && version >= 5 )) {
	document.write("body,td {  font-family: ‚l‚r ‚oƒSƒVƒbƒN, Osaka; font-size: 11px; color:#666666;line-height:120%;}");
	document.write(".username {color:#FD7E2E; font-weight:bold; font-size: 10px;}");
	
	document.write(".input1 {width:120; font-size:10px;}");
	document.write(".button1 { font-size:10px;}");
	document.write(".fsmall{font-size:10px;line-height:140%;}");
		
} else if ( userOs == "Win" && ( browser == "NN" && version == 4 )) {
	document.write("body,td {font-family: ‚l‚r ‚oƒSƒVƒbƒN, Osaka; font-size: 11px; color:#666666;line-height:120%;}");
	document.write(".username {color:#FD7E2E; font-weight:bold; font-size: 11px;}");
	
	document.write(".input1 {width:120; font-size:11px;}");
	document.write(".button1 { font-size:11px;}");
	document.write(".fsmall{font-size:11px;line-height:140%;}");
	
} else if ( userOs == "Win" && ( browser == "OPERA" && version >= 6 )) {
	document.write("body,td {  font-family: ‚l‚r ‚oƒSƒVƒbƒN, Osaka; font-size: 10px; color:#666666;line-height:120%;}");
	document.write(".username {color:#FD7E2E; font-weight:bold; font-size: 10px;}");
	
	document.write(".input1 {width:120; font-size:10px;}");
	document.write(".button1 { font-size:10px;}");
	document.write(".fsmall{font-size:10px;line-height:140%;}");
	
} else if ( userOs == "Win" ) {
	document.write("body,td {  font-family: ‚l‚r ‚oƒSƒVƒbƒN, Osaka; font-size: 10px; color:#666666;line-height:120%;}");
	document.write(".username {color:#FD7E2E; font-weight:bold; font-size: 10px;}");
	
	document.write(".input1 {width:120; font-size:10px;}");
	document.write(".button1 { font-size:10px;}");
	document.write(".fsmall{font-size:10px;line-height:140%;}");
	
} else if ( userOs == "Mac" && ( browser == "MSIE" && version >= 5 )) {
	document.write("body,td {  font-family: ‚l‚r ‚oƒSƒVƒbƒN, Osaka; font-size: 10px; color:#666666;line-height:120%;}");
	document.write(".username {color:#FD7E2E; font-weight:bold; font-size: 10px;}");
	
	document.write(".input1 {width:120; font-size:10px;}");
	document.write(".button1 { font-size:10px;}");
	document.write(".fsmall{font-size:10px;line-height:140%;}");
	
} else if ( userOs == "Mac" && ( browser == "NN" && version == 4 )) {
	document.write("body,td {  font-family: ‚l‚r ‚oƒSƒVƒbƒN, Osaka; font-size: 10px; color:#666666;line-height:120%;}");
	document.write(".username {color:#FD7E2E; font-weight:bold; font-size: 10px;}");
	
	document.write(".input1 {width:120; font-size:10px;}");
	document.write(".button1 { font-size:10px;}");
	document.write(".fsmall{font-size:10px;line-height:140%;}");
	
} else if ( userOs == "Mac" ) {
	document.write("body,td {  font-family: ‚l‚r ‚oƒSƒVƒbƒN, Osaka; font-size: 10px; color:#666666;line-height:120%;}");
	document.write(".username {color:#FD7E2E; font-weight:bold; font-size: 10px;}");
	
	document.write(".input1 {width:120; font-size:10px;}");
	document.write(".button1 { font-size:10px;}");
	document.write(".fsmall{font-size:10px;line-height:140%;}");
	
} else {
	document.write("body,td {  font-family: ‚l‚r ‚oƒSƒVƒbƒN, Osaka; font-size: 10px; color:#666666;line-height:120%;}");
	document.write(".username {color:#FD7E2E; font-weight:bold; font-size: 10px;}");
	
	document.write(".input1 {width:120; font-size:10px;}");
	document.write(".button1 { font-size:10px;}");
	document.write(".fsmall{font-size:10px;line-height:140%;}");
	
}

document.write("a:link{ color: #666666; }");
document.write("a:visited{ color: #666666; }");
document.write("a:active {color: #666666; }");
document.write("a:hover {color:#666666; text-decoration:none;}");
	
document.write("--></style>");


