

//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                  { margin : 0 0 0 0; }');
	document.writeln('a:link				{ font-family:"geneva", "arial"; text-decoration:none; font-size:13px; color:#5E564A; line-height: 14px }');
	document.writeln('a:visited				{ font-family:"geneva", "arial"; text-decoration:none; font-size:13px; color:#5E564A; line-height: 14px }');
	document.writeln('a:active				{ font-family:"geneva", "arial"; text-decoration:none; font-size:13px; color:#5E564A; line-height: 14px }');
	document.writeln('a:hover				{ font-family:"geneva", "arial"; text-decoration:none; font-size:13px; color:#5E564A; line-height: 14px }');
	document.writeln('.text				    { font-family:"geneva", "arial"; text-decoration:none; font-size:13px; color:#5E564A; line-height: 14px }');
	document.writeln('.newstext				{ font-family:"geneva", "arial"; text-decoration:none; font-size:13px; color:#5E564A; line-height: 14px }');
	document.writeln('.bodyclass			{ font-family:"helvetica", "arial"; text-decoration:none; font-size:13px; color:#000000; line-height: 15px; text-align:justify }');
	document.writeln('.input				{ font-family:"verdana", "geneva", "arial"; text-decoration:none; font-size:13px; color:#000000; line-height: 13px; background-color:#CCCCCC; border-style:0 }');
	document.writeln('\/\/ -->');
	document.writeln('</style>');
	}
else
	{
	document.writeln('<style type="text/css">');
	document.writeln('<!--');
	document.writeln('.parent{}');
	document.writeln('body                  { margin : 0 0 0 0; }');
	document.writeln('a:link				{ font-family:"geneva", "arial"; text-decoration:none; font-size:12px; color:#5E564A; line-height: 13px }');
	document.writeln('a:visited				{ font-family:"geneva", "arial"; text-decoration:none; font-size:12px; color:#5E564A; line-height: 13px }');
	document.writeln('a:active				{ font-family:"geneva", "arial"; text-decoration:none; font-size:12px; color:#5E564A; line-height: 13px }');
	document.writeln('a:hover				{ font-family:"geneva", "arial"; text-decoration:none; font-size:12px; color:#5E564A; line-height: 13px }');
	document.writeln('.text				    { font-family:"geneva", "arial"; text-decoration:none; font-size:12px; color:#5E564A; line-height: 13px }');
	document.writeln('.newstext				{ font-family:"geneva", "arial"; text-decoration:none; font-size:12px; color:#5E564A; line-height: 13px }');
	document.writeln('.bodyclass			{ font-family:"helvetica", "arial"; text-decoration:none; font-size:12px; color:#000000; line-height: 14px; text-align:justify }');
	document.writeln('.input				{ font-family:"verdana", "geneva", "arial"; text-decoration:none; font-size:12px; color:#000000; line-height: 12px; background-color:#CCCCCC; border-style:0 }');	document.writeln('\/\/ -->');
	document.writeln('\/\/ -->');
	document.writeln('</style>');
	}

	
	


