<style type="text/css">
a { text-decoration: none; color: #000000; }
a:link { text-decoration: none; color: #000000; }
a:visited {text-decoration: none; color: #000000; }
a:hover { text-decoration: none; color: #cc0000; }
h1 {  font-family: Arial, Helvetica, sans-serif; font-size: 18px; font-style: normal; line-height: 16px; font-weight: normal; font-variant: normal; text-transform: capitalize; color: #999999; word-spacing: 10px;}

p { font: 12px Georgia, Times New Roman, Times, serif; color: #000000; }
p.nv { font: 10px Arial; color: #000000; line-height: 14px }
.board { font: 12px Georgia, Times New Roman, Times, serif; color: #333333; line-height: 14px }

.menu {
border-color: #333333;
border-style: solid;
border-width:1;
background-color:#ffffff;
color: 333333;
font-size: 9pt;
font-family: Georgia,Times New Roman, Times, serif;
font-weight: normal;
}

.menuwhite {
border-color: #FFFFFF;
border-style: solid;
border-width:1;
background-color:#ffffff;
color: 111111;
font-size: 9pt;
font-family: Georgia,Times New Roman, Times, serif;
font-weight: normal;
}


.tooltiptitle{COLOR: gold; TEXT-DECORATION: none; CURSOR: Default; font-family: Arial; font-weight: bold; font-size: 8pt}
.tooltipcontent{COLOR: #666666; TEXT-DECORATION: none; CURSOR: Default; font-family: serif; font-size: 8pt}

#ToolTip{position:absolute; width: 100px; top: 0px; left: 0px; z-index:4; visibility:hidden;}
</style>
<style>
<!--
.drag{position:relative;cursor:hand}
-->
</style>
<script language="JavaScript1.2">
<!--

//Generic Drag Script- © Dynamic Drive (www.dynamicdrive.com)
//For full source code and terms of usage,
//visit http://www.dynamicdrive.com

var ie=document.all
var ns6=document.getElementById&&!document.all

var dragapproved=false
var z,x,y

function move(e){
if (dragapproved){
z.style.left=ns6? temp1+e.clientX-x: temp1+event.clientX-x
z.style.top=ns6? temp2+e.clientY-y : temp2+event.clientY-y
return false
}
}

function drags(e){
if (!ie&&!ns6)
return
var firedobj=ns6? e.target : event.srcElement
var topelement=ns6? "HTML" : "BODY"

while (firedobj.tagName!=topelement&&firedobj.className!="drag"){
firedobj=ns6? firedobj.parentNode : firedobj.parentElement
}

if (firedobj.className=="drag"){
dragapproved=true
z=firedobj
temp1=parseInt(z.style.left+0)
temp2=parseInt(z.style.top+0)
x=ns6? e.clientX: event.clientX
y=ns6? e.clientY: event.clientY
document.onmousemove=move
return false
}
}
document.onmousedown=drags
document.onmouseup=new Function("dragapproved=false")
//-->
</script>
