//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;
}

	document.writeln('<style type="text/css">');
	document.writeln('<!--');
	document.writeln('.heading		{ font-weight:bold; color: #CC0000;}');
	
if ((browser.isNavigator == true)&&win)
	{
	document.writeln('.normal,td,body,div   { font-family:"arial", "helvetica"; text-decoration:none; font-size:12px; color:#000000; }');
	document.writeln('.small		{ font-family:"arial", "helvetica"; text-decoration:none; font-size:11px; color:#000000; }');
	document.writeln('a			{ font-family:"arial", "helvetica"; text-decoration:none; font-size:12px; color:#666666;  }');
	document.writeln('a:hover		{ font-family:"arial", "helvetica"; text-decoration:none; font-size:12px; color:#999999;  }');
	}
else
	{
	document.writeln('.normal,td,body,div   { font-family:"arial", "helvetica"; text-decoration:none; font-size:11px; color:#000000;  }');
	document.writeln('.small		{ font-family:"arial", "helvetica"; text-decoration:none; font-size:10px; color:#000000; }');
	document.writeln('a			{ font-family:"arial", "helvetica"; text-decoration:none; font-size:11px; color:#666666;  }');
	document.writeln('a:hover		{ font-family:"arial", "helvetica"; text-decoration:none; font-size:11px; color:#999999;  }');
	}
	
	document.writeln('\/\/ -->');
	document.writeln('</style>');
	
