//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 : #000000; margin : 0 0 0 0; }');
	document.writeln('a:link				{ font-family: "Verdana","Arial"; text-decoration:none; font-size:10px; color:#C0C0C0; line-height: normal }');
	document.writeln('a:visited				{ font-family: "Verdana","Arial"; text-decoration:none; font-size:10px; color:#808080; line-height: normal }');
	document.writeln('a:active				{ font-family: "Verdana","Arial"; text-decoration:none; font-size:10px; color:#0080FF; line-height: normal }');
	document.writeln('a:hover				{ font-family: "Verdana","Arial"; text-decoration:none; font-size:10px; color:#0080FF; line-height: normal }');
	document.writeln('.text					{ font-family: "Verdana","Arial"; text-decoration:none; font-size:10px; color:#FFFFFF; line-height: normal }');
	document.writeln('.text2				{ font-family: "Verdana","Arial"; text-decoration:none; font-size:11px; color:#FFFFFF; line-height: normal }');
	document.writeln('.text3				{ font-family: "Verdana","Arial"; text-decoration:none; font-size:12px; color:#FFFFFF; line-height: normal }');
	document.writeln('.text4				{ font-family: "Verdana","Arial"; text-decoration:none; font-size:13px; color:#FFFFFF; line-height: normal }');
	document.writeln('.text5				{ font-family: "Verdana","Arial"; text-decoration:none; font-size:14px; color:#FFFFFF; line-height: normal }');
	document.writeln('.texto				{ font-family: "Verdana","Arial"; text-decoration:none; font-size:9px; color:#FF6C13; line-height: normal }');
	document.writeln('.textb				{ font-family: "Verdana","Arial"; text-decoration:none; font-size:9px; color:#4F42FC; line-height: normal }');
	document.writeln('.textr				{ font-family: "Verdana","Arial"; text-decoration:none; font-size:9px; color:#F00B00; line-height: normal }');
	document.writeln('.texty				{ font-family: "Verdana","Arial"; text-decoration:none; font-size:9px; color:#D5D701; line-height: normal }');
	document.writeln('.textg				{ font-family: "Verdana","Arial"; text-decoration:none; font-size:9px; color:#09AD18; line-height: normal }');
	document.writeln('\/\/ -->');
	document.writeln('</style>');
	}
else
	{
	document.writeln('<style type="text/css">');
	document.writeln('<!--');
	document.writeln('.parent{}');
	document.writeln('body       	{ background-color : #000000; margin : 0 0 0 0; }');
	document.writeln('a:link	{ font-family: "Verdana","Arial"; text-decoration:none; font-size:11px; color:#C0C0C0; line-height: normal }');
	document.writeln('a:visited	{ font-family: "Verdana","Arial"; text-decoration:none; font-size:11px; color:#808080; line-height: normal }');
	document.writeln('a:active	{ font-family: "Verdana","Arial"; text-decoration:none; font-size:11px; color:#0080FF; line-height: normal }');
	document.writeln('a:hover	{ font-family: "Verdana","Arial"; text-decoration:none; font-size:11px; color:#0080FF; line-height: normal }');
	document.writeln('.text		{ font-family: "Verdana","Arial"; text-decoration:none; font-size:11px; color:#FFFFFF; line-height: normal }');
	document.writeln('.text2	{ font-family: "Verdana","Arial"; text-decoration:none; font-size:12px; color:#FFFFFF; line-height: normal }');
	document.writeln('.text3	{ font-family: "Verdana","Arial"; text-decoration:none; font-size:13px; color:#FFFFFF; line-height: normal }');
	document.writeln('.text4	{ font-family: "Verdana","Arial"; text-decoration:none; font-size:14px; color:#FFFFFF; line-height: normal }');
	document.writeln('.text5	{ font-family: "Verdana","Arial"; text-decoration:none; font-size:15px; color:#FFFFFF; line-height: normal }');
	document.writeln('.texto	{ font-family: "Verdana","Arial"; text-decoration:none; font-size:11px; color:#FF6C13; line-height: normal }');
	document.writeln('.textb	{ font-family: "Verdana","Arial"; text-decoration:none; font-size:11px; color:#4F42FC; line-height: normal }');
	document.writeln('.textbb	{ font-family: "Verdana","Arial"; text-decoration:none; font-size:11px; color:#0000FF; line-height: normal }');
	document.writeln('.textr	{ font-family: "Verdana","Arial"; text-decoration:none; font-size:11px; color:#F00B00; line-height: normal }');
	document.writeln('.texty	{ font-family: "Verdana","Arial"; text-decoration:none; font-size:11px; color:#D5D701; line-height: normal }');
	document.writeln('.textg	{ font-family: "Verdana","Arial"; text-decoration:none; font-size:11px; color:#09AD18; line-height: normal }');
	document.writeln('.textgrey	{ font-family: "Verdana","Arial"; text-decoration:none; font-size:11px; color:#A3A5FF; line-height: normal }');
	document.writeln('.textgrey2	{ font-family: "Verdana","Arial"; text-decoration:none; font-size:11px; color:#6F6F6F; line-height: normal }');
	document.writeln('\/\/ -->');
	document.writeln('</style>');
	}
