//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 }');

	document.writeln('A:link { color:#336699; font-size:11px; text-decoration:none; font-weight:bold }');

	document.writeln('A:visited { color:#336699; font-size:11px;  text-decoration:none; font-weight:bold }');

	document.writeln('A:hover { color:#cc9999; font-size:11px;  text-decoration:underline; font-weight:bold }');

	document.writeln('A:active { color:#9999cc; 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('.footerText { font-family: verdana,arial,helvetica,sans-serif; color:#666666; line-height: 14px; font-size:11px }');

	document.writeln('.dot { font-family: verdana,arial,helvetica,sans-serif; color:#000000; line-height: 15px; font-size:11px }');

	document.writeln('a.cmd, a.cmd:visited { color: #ffffff; background: #ff0000; font-family: verdana,arial,helvetica,sans-serif;}');

	document.writeln('a.cmd:hover { color: #ffcccc }');
	
	document.writeln('#search-links{width:100%;display:block;clear:both;}');
	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 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 }');

	document.writeln('A:link { color:#336699; font-size:10px; text-decoration:none; font-weight:bold }');

	document.writeln('A:visited { color:#336699; font-size:10px;  text-decoration:none; font-weight:bold }');

	document.writeln('A:hover { color:#cc9999; font-size:10px;  text-decoration:underline; font-weight:bold }');

	document.writeln('A:active { color:#9999cc; 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('.footerText { font-family: verdana,arial,helvetica,sans-serif; color:#666666; line-height: 14px; font-size:10px }');

	document.writeln('.dot { font-family: verdana,arial,helvetica,sans-serif; color:#000000; line-height: 15px; font-size:9px }');

	document.writeln('a.cmd, a.cmd:visited { color: #ffffff; background: #ff0000; font-family: verdana,arial,helvetica,sans-serif;}');

	document.writeln('a.cmd:hover { color: #ffcccc }');

	document.writeln('#search-links{width:100%;display:block;clear:both;}');
	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 }');

	document.writeln('A:link { color:#336699; font-size:10px; text-decoration:none; font-weight:bold }');

	document.writeln('A:visited { color:#336699; font-size:10px;  text-decoration:none; font-weight:bold }');

	document.writeln('A:hover { color:#cc9999; font-size:10px;  text-decoration:underline; font-weight:bold }');

	document.writeln('A:active { color:#9999cc; 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('.footerText { font-family: verdana,arial,helvetica,sans-serif; color:#666666; line-height: 14px; font-size:10px }');

	document.writeln('.dot { font-family: verdana,arial,helvetica,sans-serif; color:#000000; line-height: 15px; font-size:11px }');

	document.writeln('a.cmd, a.cmd:visited { color: #ffffff; background: #ff0000; font-family: verdana,arial,helvetica,sans-serif;}');

	document.writeln('a.cmd:hover { color: #ffcccc }');
	
	document.writeln('#search-links{width:100%;display:block;clear:both;}');
	document.writeln('#search-query{text-align:right;width:45%;float:right;}');
	document.writeln('#page-links{float:left;width:55%}');

	document.writeln('\/\/ -->');

	document.writeln('</style>');

}



