//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('body                		  	{ background-color : #FFFFFF; margin : 0 0 0 0; }');
document.writeln('a:link				{ font-family: Geneva, Arial, Helvetica, san-serif; font-size:  10px; color: #B5B5B5; text-decoration: none; font-style: normal; font-weight: normal}');
	document.writeln('a:visited				{  font-family: Geneva, Arial, Helvetica, san-serif; font-size:  10px; color: #B5B5B5; text-decoration: none; font-style: normal; font-weight: normal}');
	document.writeln('a:active				{ font-family: Geneva, Arial, Helvetica, san-serif; font-size:  10px; text-decoration:none; color:#000000; line-height: normal }');
	document.writeln('a:hover				{  font-family: Geneva, Arial, Helvetica, san-serif; font-size:  10px; color: #000000; text-decoration: none; font-style: normal; font-weight: normal}');
	document.writeln('.H1	 				{ color: #7F7F7F; font-family: Verdana, Arial, Helvetica, sans-serif; font-size:  9px;  }');
	document.writeln('.H2	 				{ color: #000000; font-family: Verdana, Arial, Helvetica, sans-serif; font-size:  9px;  }');
	document.writeln('.H3	 				{ color: #AA0D2A; font-family: Verdana, Arial, Helvetica, sans-serif; font-size:  9px; font-weight: bold }');
	document.writeln('\/\/ -->');
	document.writeln('</style>');
	}
else
	{
	document.writeln('<style type="text/css">');
	document.writeln('<!--');
	document.writeln('.parent{}');
	document.writeln('body                		  	{ background-color : #FFFFFF; margin : 0 0 0 0; }');
document.writeln('a:link				{ font-family: Geneva, Arial, Helvetica, san-serif; font-size:  10px; color: #B5B5B5; text-decoration: none; font-style: normal; font-weight: normal}');
	document.writeln('a:visited				{  font-family: Geneva, Arial, Helvetica, san-serif; font-size:  10px; color: #B5B5B5; text-decoration: none; font-style: normal; font-weight: normal}');
	document.writeln('a:active				{ font-family: Geneva, Arial, Helvetica, san-serif; font-size:  10px; text-decoration:none; color:#000000; line-height: normal }');
	document.writeln('a:hover				{  font-family: Geneva, Arial, Helvetica, san-serif; font-size:  10px; color: #000000; text-decoration: none; font-style: normal; font-weight: normal}');
	document.writeln('.H1	 				{ color: #7F7F7F; font-family: Verdana, Arial, Helvetica, sans-serif; font-size:  9px;  }');
	document.writeln('.H2	 				{ color: #000000; font-family: Verdana, Arial, Helvetica, sans-serif; font-size:  9px;  }');
	document.writeln('.H3	 				{ color: #AA0D2A; font-family: Verdana, Arial, Helvetica, sans-serif; font-size:  9px; font-weight: bold }');
	document.writeln('\/\/ -->');
	document.writeln('</style>');
	}
