//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                 { margin : 25 25 25 25; }');
	document.writeln('a:link				{ font-family:"helvetica", "arial"; text-decoration:none; font-size:12px; color:#BA733F; line-height: 12px}');
	document.writeln('a:visited				{ font-family:"helvetica", "arial"; text-decoration:none; font-size:12px; color:#3F432A; line-height: 12px}');
	document.writeln('a:active				{ font-family:"helvetica", "arial"; text-decoration:none; font-size:12px; color:#3F432A; line-height: 12px}');
	document.writeln('.text				{ font-family:"helvetica", "arial"; text-decoration:none; font-size:12px; color:#444444; line-height: 12px}');
	document.writeln('.textital				{ font-family:"helvetica", "arial"; font-style: italic; text-decoration:none; font-size:12px; color:#444444; line-height: 12px}');
	document.writeln('.head				{ font-family:"helvetica", "arial"; text-decoration:none; font-size:12px; color:#999999; line-height: 12px}');
	document.writeln('.movie				{ font-family:"helvetica", "arial"; text-decoration:none; left:5px; font-size:12px; color:#B00808; line-height: 12px}');
	document.writeln('.spacer				{ font-family:"helvetica", "arial"; text-decoration:none; font-size:4px; line-height: 0px}');
	document.writeln('\/\/ -->');
	document.writeln('</style>');
	}
else
	{
	document.writeln('<style type="text/css">');
	document.writeln('<!--');
	document.writeln('.parent{}');
	document.writeln('body                 { margin : 25 25 25 25; }');
	document.writeln('a:link				{ font-family:"helvetica", "arial"; text-decoration:none; font-size:11px; color:#BA733F; line-height: 12px}');
	document.writeln('a:visited				{ font-family:"helvetica", "arial"; text-decoration:none; font-size:11px; color:#3F432A; line-height: 12px}');
	document.writeln('a:active				{ font-family:"helvetica", "arial"; text-decoration:none; font-size:11px; color:#3F432A; line-height: 12px}');
	document.writeln('.text				{ font-family:"helvetica", "arial"; text-decoration:none; font-size:11px; color:#444444; line-height: 12px}');
	document.writeln('.textital				{ font-family:"helvetica", "arial"; font-style: italic; text-decoration:none; font-size:11px; color:#444444; line-height: 12px}');
	document.writeln('.head				{ font-family:"helvetica", "arial"; text-decoration:none; font-size:11px; color:#999999; line-height: 12px}');
	document.writeln('.movie				{ font-family:"helvetica", "arial"; text-decoration:none; left:5px; font-size:11px; color:#B00808; line-height: 12px}');
	document.writeln('.spacer				{ font-family:"helvetica", "arial"; text-decoration:none; font-size:4px; line-height: 0px}');
	document.writeln('\/\/ -->');
	document.writeln('</style>');
	}
