//stylesheet


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 && parseInt(navigator.appVersion) < 5 ) 
{
  //////////////////
  // WINDOWS NETSCAPE < 5
  //////////////////
    document.writeln('<style type="text/css">');
	document.writeln('<!--');
	document.writeln('body { background : #ffffff url(images/bg.gif) repeat-x }');
	document.writeln('A:link { color:#336666; font-size:11px; text-decoration:none; font-weight:bold }');
	document.writeln('A:visited { color:#336666; font-size:11px;  text-decoration:none; font-weight:bold }');
	document.writeln('A:hover { color:#336666; font-size:11px;  text-decoration:underline; font-weight:bold }');
	document.writeln('A:active { color:#000000; font-size:11px;  text-decoration:none; font-weight:bold }');
	document.writeln('.bodyText { font-family: verdana,arial,helvetica,sans-serif; color:#000000; line-height: 16px; font-size:11px }');
	document.writeln('.dot { font-family: verdana,arial,helvetica,sans-serif; color:#000000; line-height: 15px; font-size:11px }');
        document.writeln('#search-links{width:100%;display:block;clear:both;}');
	document.writeln('#search-query{text-align:right;width:39%;float:right;}');
	document.writeln('#page-links{float:left;width:54%}');
	document.writeln('\/\/ -->');
	document.writeln('</style>');
} 
else if ( (browser.isNavigator == true) && win && parseInt(navigator.appVersion) >= 5 ) 
{
  //////////////////
  // WINDOWS NETSCAPE >= 5
  //////////////////
    document.writeln('<style type="text/css">');
	document.writeln('<!--');
	document.writeln('body { background : #ffffff url(images/bg.gif) repeat-x }');
	document.writeln('A:link { color:#336666; font-size:10px; text-decoration:none; font-weight:bold }');
	document.writeln('A:visited { color:#336666; font-size:10px;  text-decoration:none; font-weight:bold }');
	document.writeln('A:hover { color:#336666; font-size:10px;  text-decoration:underline; font-weight:bold }');
	document.writeln('A:active { color:#000000; font-size:10px;  text-decoration:none; font-weight:bold }');
	document.writeln('.bodyText { font-family: verdana,arial,helvetica,sans-serif; color:#000000; line-height: 16px; font-size:10px }');
	document.writeln('.dot { font-family: verdana,arial,helvetica,sans-serif; color:#000000; line-height: 15px; font-size:9px }');
        document.writeln('#search-links{width:100%;display:block;clear:both;padding-top:0px;}');
	document.writeln('#search-query{text-align:right;width:45%;float:right }');
	document.writeln('#page-links{float:left;width:55%}');
	document.writeln('\/\/ -->');
	document.writeln('</style>');
} 
else 
{
  /////////////////////////////////////////////////
  // ANYTHING ELSE
  /////////////////////////////////////////////////
    document.writeln('<style type="text/css">');
	document.writeln('<!--');
	document.writeln('body { background : #ffffff url(images/bg.gif) repeat-x }');
	document.writeln('A:link { color:#336666; font-size:10px; text-decoration:none; font-weight:bold }');
	document.writeln('A:visited { color:#336666; font-size:10px;  text-decoration:none; font-weight:bold }');
	document.writeln('A:hover { color:#336666; font-size:10px;  text-decoration:underline; font-weight:bold }');
	document.writeln('A:active { color:#000000; font-size:10px;  text-decoration:none; font-weight:bold }');
	document.writeln('.bodyText { font-family: verdana,arial,helvetica,sans-serif; color:#000000; line-height: 16px; font-size:10px }');
	document.writeln('.dot { font-family: verdana,arial,helvetica,sans-serif; color:#000000; line-height: 15px; font-size:11px }');
        document.writeln('#search-links{width:100%;display:block;clear:both;}');
	document.writeln('#search-query{text-align:right;width:42%;float:right;}');
	document.writeln('#page-links{float:left;width:48%;}');
	document.writeln('\/\/ -->');
	document.writeln('</style>');
}

