//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: white; color: black; font-size: 11px; font-family: serif; }');
	document.writeln('b          { color: black; text-width: bold; font-size: 11px; font-family: times new roman; }');
	document.writeln('td         { color: black; font-size: 11px; font-family: times new roman; line-height: 14px; }');
	document.writeln('i          { color: black; font-size: 11px; font-family: times new roman; line-height: 14px; font-style: italic }');
	document.writeln('u          { color: black; text-decoration: underline }');
	document.writeln('a          { color: #993300; }');
	document.writeln('a:link, a:visited   { text-decoration: none; }');
	document.writeln('a:active, a:hover   { text-decoration: underline; }');
	document.writeln('.caption   { color: white; font-size: 11px; font-family: times new roman }');
	document.writeln('.red       { color: #cc0000; font-size: 11px; font-family: times new roman; line-height: 14px; }');
	document.writeln('.notes     { color: black; font-size: 11px; font-family: serif; }');
	document.writeln('.cpt       { color: #cc0000; font-size: 11px; font-family: times new roman; line-height: 14px; }');
	document.writeln('\/\/ -->');
	document.writeln('</style>');
	}
else
	{
	document.writeln('<style type="text/css">');
	document.writeln('<!--');
	document.writeln('.parent{}');
	document.writeln('body	     { background-color: white; color: black; font-size: 11px; font-family: serif; }');
	document.writeln('b          { color: black; text-width: bold; font-size: 11px; font-family: times new roman; }');
	document.writeln('td         { color: black; font-size: 11px; font-family: times new roman; line-height: 14px; }');
	document.writeln('i          { color: black; font-size: 11px; font-family: times new roman; line-height: 14px; font-style: italic }');
	document.writeln('u          { color: black; text-decoration: underline }');
	document.writeln('a          { color: #993300; }');
	document.writeln('a:link, a:visited   { text-decoration: none; }');
	document.writeln('a:active, a:hover   { text-decoration: underline; }');
	document.writeln('.caption   { color: white; font-size: 11px; font-family: times new roman }');
	document.writeln('.red       { color: #cc0000; font-size: 11px; font-family: times new roman; line-height: 14px; }');
	document.writeln('.notes     { color: black; font-size: 11px; font-family: serif; }');
	document.writeln('.cpt       { color: #cc0000; font-size: 11px; font-family: times new roman; line-height: 14px; }');
	document.writeln('\/\/ -->');
	document.writeln('</style>');
	}
