//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('td {font-family:tahoma, arial; font-size:11px; color:#7091F3D;}');
	
	document.writeln('.valkoinenteksti {font-family:tahoma, arial; font-weight:normal; font-size:11px; color:#FFFFFF;}');
	document.writeln('.pikkuteksti {font-family:tahoma, arial; font-weight:normal; font-size:9px;}');
	document.writeln('a.pikkuteksti {font-family:tahoma, arial; font-weight:normal; font-size:9px;}');
	
	document.writeln('.pvm {font-family:century gothic, tahoma, arial; font-weight:bold; font-size:11px; color:#FFFFFF;}');

	document.writeln('a {color:#091F3D; text-decoration:none;}');
	document.writeln('a.visited {}');
	document.writeln('a.active {}');
	document.writeln('a:hover {color:#091F3D; text-decoration:underline;}');

	document.writeln('a.valkoinenlinkki {color:#FFFFFF; text-decoration:none;}');
	document.writeln('a.valkoinenlinkki:hover {color:#FFFFFF; text-decoration:underline;}');

	document.writeln('\/\/ -->');
	document.writeln('</style>');
	}
else
	{
	document.writeln('<style type="text/css">');
	document.writeln('<!--');
	document.writeln('.parent{}');

	document.writeln('td {font-family:tahoma, arial; font-size:11px; color:#7091F3D;}');
	
	document.writeln('.valkoinenteksti {font-family:tahoma, arial; font-weight:normal; font-size:11px; color:#FFFFFF;}');
	document.writeln('.pikkuteksti {font-family:tahoma, arial; font-weight:normal; font-size:9px;}');
	document.writeln('a.pikkuteksti {font-family:tahoma, arial; font-weight:normal; font-size:9px;}');
	
	document.writeln('.pvm {font-family:century gothic, tahoma, arial; font-weight:bold; font-size:11px; color:#FFFFFF;}');

	document.writeln('a {color:#091F3D; text-decoration:none;}');
	document.writeln('a.visited {}');
	document.writeln('a.active {}');
	document.writeln('a:hover {color:#091F3D; text-decoration:underline;}');

	document.writeln('a.valkoinenlinkki {color:#FFFFFF; text-decoration:none;}');
	document.writeln('a.valkoinenlinkki:hover {color:#FFFFFF; text-decoration:underline;}');

	document.writeln('\/\/ -->');
	document.writeln('</style>');
	}
