//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 : #E5E5DC; margin : 0 0 0 0; }');
	document.writeln('a:link				{ font-family:"verdana"; text-decoration:none; font-size:10px; color:#000000; line-height: normal;}');
	document.writeln('a:visited				{ font-family:"verdana"; text-decoration:none; font-size:10px; color:#000000; line-height: normal;}');
	document.writeln('a:active				{ font-family:"verdana"; text-decoration:none; font-size:10px; color:#000000; line-height: normal;}');
	document.writeln('a:hover				{ font-family:"verdana"; text-decoration:none; font-size:10px; color:#000000; line-height: normal;}');
		document.writeln('.text					{ font-family:"verdana"; text-decoration:none; font-size:10px; color:#000000; line-height: normal; font-weight="bold"}');
	document.writeln('.text2				{ font-family:"verdana"; text-decoration:none; font-size:10px; color:#ec008c; line-height: normal; font-weight="bold"}');
	document.writeln('.rubbe				{ font-family:"verdana"; text-decoration:none; font-size:10px; color:#2C2A33; line-height: normal; font-weight="bold"}');
	document.writeln('.rubbe2				{ font-family:"verdana"; text-decoration:none; font-size:10px; color:#FFFFFF; line-height: normal; 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 : #E5E5DC; margin : 0 0 0 0; }');
	document.writeln('a:link				{ font-family:"verdana"; text-decoration:none; font-size:10px; color:#000000; line-height: normal;}');
	document.writeln('a:visited				{ font-family:"verdana"; text-decoration:none; font-size:10px; color:#000000; line-height: normal;}');
	document.writeln('a:active				{ font-family:"verdana"; text-decoration:none; font-size:10px; color:#000000; line-height: normal;}');
	document.writeln('a:hover				{ font-family:"verdana"; text-decoration:underline; font-size:10px; color:#999999; line-height: normal; font-weight="bold"}');
	document.writeln('.text					{ font-family:"verdana"; text-decoration:none; font-size:10px; color:#000000; line-height: normal; font-weight="bold"}');
	document.writeln('.text2				{ font-family:"verdana"; text-decoration:none; font-size:10px; color:#ec008c; line-height: normal; font-weight="bold"}');
	document.writeln('.rubbe				{ font-family:"verdana"; text-decoration:none; font-size:10px; color:#2C2A33; line-height: normal; font-weight="bold"}');
	document.writeln('.rubbe2				{ font-family:"verdana"; text-decoration:none; font-size:10px; color:#ec008c; line-height: normal; font-weight="bold"}');
	document.writeln('\/\/ -->');
	document.writeln('</style>');
	}

