<!--
var ismac = false
var browserplatform = navigator.userAgent;
var v, ns, ns4, ns5, ie, ie4, ie5
var b = navigator.appName
if (b=="Netscape") b = "ns"
else if (b=="Microsoft Internet Explorer") b = "ie"
else b = b
v = parseInt(navigator.appVersion)
ns = (b=="ns" && v>=4)
ns4 = (b=="ns" && v==4)
ns5 = (b=="ns" && v==5)
ie = (b=="ie" && v>=4)
ie4 = (navigator.userAgent.indexOf('MSIE 4')>0)
ie5 = (navigator.userAgent.indexOf('MSIE 5')>0)
if (ie5) v = 5
var min = (ns||ie)
if (browserplatform.indexOf("Mac")>=0){ismac = true}


// Mac
if(ismac){
if(b=="ns" && v > 3){
document.write('<STYLE TYPE="text/css"><!-- ')
document.write('TD {font-size:10pt; font-family: Verdana, Arial, Helvetica, sans-serif; color:000000;}')
document.write('--></STYLE>')
} else if (ie4) {
document.write('<STYLE TYPE="text/css"><!-- ')
document.write('TD {font-size:10pt; font-family: Verdana, Arial, Helvetica, sans-serif; color:000000;}')
document.write('--></STYLE>')
} else if (ie5) {
document.write('<STYLE TYPE="text/css"><!-- ')
document.write('TD {font-size:8pt; font-family: Verdana, Arial, Helvetica, sans-serif; color:000000;}')
document.write('--></STYLE>')		
}
// Windows, UNIX, etc.
} else {
if(b=="ns"){
document.write('<STYLE TYPE="text/css"><!-- ')
document.write('TD {font-size:8pt; font-family: Verdana, Arial, Helvetica, sans-serif; color:000000;}')
document.write('--></STYLE>')
} else {
document.write('<STYLE TYPE="text/css"><!-- ')
document.write('TD {font-size:8pt; font-family: Verdana, Arial, Helvetica, sans-serif; color:000000;}')
document.write('--></STYLE>')
}
}	
// page link colors	
document.write('<STYLE TYPE="text/css"><!-- a:link { color:990099; text-decoration: none;} --></STYLE>')	
//	document.write('<STYLE TYPE="text/css"><!-- a:link { color:99CCCC; text-decoration: none;} --></STYLE>')	
	document.write('<STYLE TYPE="text/css"><!-- a:visited {  color:990099; text-decoration: none;} --></STYLE>')
//-->
