 
/* css/tooltip.css -- fancy tooltips */
span.tool {
  position: relative;   /* this is key */
  cursor: help;
  color: white;
  z-index: 24;
}
span.tool span {
  display: none;        /* so is this */
}
a.lnk:hover {
	cursor: help;
	text-decoration: underline;
	color: #fff;
	font-size: 99%;
}
/* tooltip will display on :hover event */
a.lnk:hover span.tool span.tip {
  display: block;
  z-index: 25;
  position: absolute;
  top: 2.5em;
  left: 0;
  width: 100px;
  line-height: 1.2em;
  padding: 3px 7px 4px 6px;
  border: 1px solid #E0E7B8;
  background-color: #f7f7ee;
  font-family: arial, helvetica, sans-serif;
  font-size: 11px;
  font-weight: normal;
  color: #000;
  text-align: left;
  text-decoration: none;
}