/* the attributes of the non-active link */
div.info {
z-index:24;
position:relative;
background-color:white; /* same as background page */
padding: 0px 2px 0px 4px;
}
/* the attributes of the 'on-hover' link */
div.info:hover {
z-index:25;
background-color:#EFEFEF;
}
/* hide 'tooltip' text by default */
div.info div.tooltip {
display:none;
}
/* the attributes of the 'tooltip' */
div.info:hover div.tooltip {
display:block;
position:absolute;
top:-2em; left:2em; /*width:15em;*/
border:1px solid #9F9FFF;
background-color:#EFEFEF;
padding-bottom:1px;
font-size: 9pt;
text-align: center;
}
a:link
{
color:green;
}