// <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('.parent{}');
	document.writeln('a:link				   { font-family:"geneva", "arial"; text-decoration:none; font-size:10px; color:#7A92A3; line-height: 11px }');
	document.writeln('a:visited				{ font-family:"geneva", "arial"; text-decoration:none; font-size:10px; color:#7A92A3; line-height: 11px }');
	document.writeln('a:active				 { font-family:"geneva", "arial"; text-decoration:none; font-size:10px; color:#CCC; line-height: 11px }');
	document.writeln('a:hover				{ font-family:"geneva", "arial"; text-decoration:underline; font-size:10px; color:#CCC; line-height: 11px }');
	document.writeln('.text				{ font-family:"geneva", "arial"; text-decoration:none; font-size:10px; color:#7A92A3; line-height: 11px }');
	document.writeln('.text2				   { font-family:"geneva", "arial"; text-decoration:none; font-weight:bold; font-size:10px; color:#77a4b5; line-height: 12px }');
	document.writeln('.text3				   { font-family:"geneva", "arial"; text-decoration:none; font-size:10px; color:#8EB7C6; line-height: 12px }');
	document.writeln('\/\/ -->');
	document.writeln('</style>');
	}
else
	{
	document.writeln('<style type="text/css">');
	document.writeln('<!--');
	document.writeln('.parent{}');
	document.writeln('a:link				   { font-family:"geneva", "arial"; text-decoration:none; font-size:9px; color:#7A92A3; line-height: 11px }');
	document.writeln('a:visited				 { font-family:"geneva", "arial"; text-decoration:none; font-size:9px; color:#7A92A3; line-height: 11px }');
	document.writeln('a:active				 { font-family:"geneva", "arial"; text-decoration:none; font-size:9px; color:#CCC; line-height: 11px }');
	document.writeln('a:hover				{ font-family:"geneva", "arial"; text-decoration:underline; font-size:9px; color:#CCC; line-height: 11px }');
	document.writeln('.text				{ font-family:"geneva", "arial"; text-decoration:none; font-size:9px; color:#7A92A3; line-height: 11px }');
	document.writeln('.text2				   { font-family:"geneva", "arial"; text-decoration:none; font-weight:bold; font-size:9px; color:#77a4b5; line-height: 12px }');
	document.writeln('.text3				   { font-family:"geneva", "arial"; text-decoration:none; font-size:9px; color:#8EB7C6; line-height: 12px }');
	document.writeln('\/\/ -->');
	document.writeln('</style>');
	}

