//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)
	{
	
	// NETSCAPEN ASETUKSET
	
	document.writeln('<style type="text/css">');
	document.writeln('<!--');
	document.writeln('.parent{}');

	document.writeln('td {font-family:arial; font-size:12px; color:#3B3B3B;}');

	document.writeln('a {color:#5C1000; text-decoration:underline;}');
	document.writeln('a.visited {}');
	document.writeln('a.active {}');
	document.writeln('a:hover {color:#5C1000; text-decoration:underline;}');

	document.writeln('a.uutinen {color:#797979; font-size:9px; text-decoration:none;}');
	document.writeln('a.uutinen2 {color:#3B3B3B; font-size:11px; text-decoration:none;}');
	document.writeln('a.uutinen2:hover {color:#3B3B3B; font-size:11px; text-decoration:underline;}');
	
	document.writeln('.harmaa {color:#aaaaaa; font-size:9px;}');
	
	document.writeln('b {font-weight:bold; font-size:12px; color:#5C1000;}');
	document.writeln('b.musta {font-weight:bold; font-size:12px; color:#000000;}');
	
	document.writeln('\/\/ -->');
	document.writeln('</style>');
	}
else
	{
	
	// IE:N ASETUKSET
	
	document.writeln('<style type="text/css">');
	document.writeln('<!--');
	document.writeln('.parent{}');

	document.writeln('td {font-family:arial; font-size:11px; color:#3B3B3B;}');

	document.writeln('a {color:#5C1000; text-decoration:underline;}');
	document.writeln('a.visited {}');
	document.writeln('a.active {}');
	document.writeln('a:hover {color:#5C1000; text-decoration:underline;}');

	document.writeln('a.uutinen {color:#797979; font-size:11px; text-decoration:none;}');
	document.writeln('a.uutinen2 {color:#3B3B3B; font-size:11px; text-decoration:none;}');
	document.writeln('a.uutinen2:hover {color:#3B3B3B; font-size:11px; text-decoration:underline;}');
	
	document.writeln('hr {	height:1px; color:#dddddd; 	background-color:#dddddd;	border:0px solid #dddddd;}');
	
	document.writeln('.harmaa {color:#aaaaaa; font-size:9px;}');
	
	document.writeln('b {font-weight:bold; font-size:12px; color:#5C1000;}');
	document.writeln('b.musta {font-weight:bold; font-size:10px; color:#000000;}');
	
	
	document.writeln('\/\/ -->');
	document.writeln('</style>');
	}