//script


var browser = new Object();


var win=false;
if (navigator.userAgent.indexOf("Win")!=-1) 

{
	win=true;

}else

browser.version = parseInt(navigator.appVersion);

browser.isNavigator = false;
browser.isIE = false;

if (navigator.appName.indexOf("Netscape") != -1) 

{
	browser.isNavigator = true;
}

if (navigator.appName.indexOf("Microsoft") != -1)
{
	browser.isIE = true;
}


if ((browser.isNavigator == true)&&win)
	{
	document.writeln('<style type="text/css">');
	document.writeln('<!--');
	document.writeln('.normal,td,body,div                 { font-family:"verdana", "geneva", "arial"; text-decoration:none; font-size:10px; color:#BBBBBB; }');
	document.writeln('a					{ font-family:"verdana", "geneva", "arial"; text-decoration:none; font-size:10px; color:#EEEEEE;  }');
	document.writeln('a:hover				{ font-family:"verdana", "geneva", "arial"; text-decoration:none; font-size:10px; color:#CCCCCC;  }');
	document.writeln('\/\/ -->');
	document.writeln('</style>');
	}
else
	{
	document.writeln('<style type="text/css">');
	document.writeln('<!--');
	document.writeln('.normal,td,body,div                 { font-family:"verdana", "geneva", "arial"; text-decoration:none; font-size:9px; color:#BBBBBB;  }');
	document.writeln('a					{ font-family:"verdana", "geneva", "arial"; text-decoration:none; font-size:9px; color:#EEEEEE;  }');
	document.writeln('a:hover				{ font-family:"verdana", "geneva", "arial"; text-decoration:none; font-size:9px; color:#CCCCCC;  }');
	document.writeln('\/\/ -->');
	document.writeln('</style>');

	}
