

// maori scripting for styles


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('a:darklink				{ font-family:"arial", "geneva"; text-decoration:none; font-size:13px; color:#003366; line-height: normal }');
	document.writeln('a:link				{ font-family:"arial", "geneva"; text-decoration:none; font-size:13px; color:#FFFFFF; line-height: normal }');
	document.writeln('a:visited				{ font-family:"arial", "geneva"; text-decoration:none; font-size:13px; color:#003366; line-height: normal }');
	document.writeln('a:active				{ font-family:"arial", "geneva"; text-decoration:none; font-size:13px; color:#666666 ; line-height: normal }');
	document.writeln('a:hover				{ font-family:"arial", "geneva"; text-decoration:none; font-size:13px; color:#003366; line-height: normal }');
	document.writeln('.text				        { font-family:"arial", "geneva"; text-decoration:none; font-size:13px; color:#999999; line-height: normal }');
        document.writeln('.textdark				{ font-family:"arial", "geneva"; text-decoration:none; font-size:13px; color:#003366; line-height: normal }');
        document.writeln('.textlight				{ font-family:"arial", "geneva"; text-decoration:none; font-size:13px; color:#0099CC; line-height: normal }');
        document.writeln('.textgrey				{ font-family:"arial", "geneva"; text-decoration:none; font-size:13px; color:#999999; line-height: normal }');
        document.writeln('.smallgrey				{ font-family:"arial", "geneva"; text-decoration:none; font-size:11px; color:#999999; line-height: normal }');
        document.writeln('.heading01				{ font-family:"arial", "geneva"; text-decoration:none; font-size:15px; color:#003366; line-height: normal }');
        document.writeln('.heading02				{ font-family:"arial", "geneva"; text-decoration:none; font-size:13px; color:#0099CC; line-height: normal }');
	document.writeln('\/\/ -->');
	document.writeln('</style>');
	}
else
	{
	document.writeln('<style type="text/css">');
	document.writeln('<!--');
	document.writeln('.parent{}');
        document.writeln('a:darklink				{ font-family:"arial", "geneva"; text-decoration:none; font-size:12px; color:#003366; line-height: normal }');
	document.writeln('a:link				{ font-family:"arial", "geneva"; text-decoration:none; font-size:12px; color:#FFFFFF; line-height: normal }');
	document.writeln('a:visited				{ font-family:"arial", "geneva"; text-decoration:none; font-size:12px; color:#003366; line-height: normal }');
	document.writeln('a:active				{ font-family:"arial", "geneva"; text-decoration:none; font-size:12px; color:#666666; line-height: normal }');
	document.writeln('a:hover				{ font-family:"arial", "geneva"; text-decoration:none; font-size:12px; color:#003366; line-height: normal }');
	document.writeln('.text		               		{ font-family:"arial", "geneva"; text-decoration:none; font-size:12px; color:#999999; line-height: normal }');
	document.writeln('.textdark		                { font-family:"arial", "geneva"; text-decoration:none; font-size:12px; color:#003366; line-height: normal }');
        document.writeln('.textlight				{ font-family:"arial", "geneva"; text-decoration:none; font-size:12px; color:#0099CC; line-height: normal }');
        document.writeln('.textgrey				{ font-family:"arial", "geneva"; text-decoration:none; font-size:12px; color:#999999; line-height: normal }');
        document.writeln('.smallgrey				{ font-family:"arial", "geneva"; text-decoration:none; font-size:10px; color:#999999; line-height: normal }');
        document.writeln('.heading01				{ font-family:"arial", "geneva"; text-decoration:none; font-size:15px; color:#003366; line-height: normal }');
        document.writeln('.heading02		                { font-family:"arial", "geneva"; text-decoration:none; font-size:12px; color:#0099CC; line-height: normal }');
	document.writeln('\/\/ -->');
	document.writeln('</style>');
	}

