/* css/tooltip.css -- fancy tooltips */

div.tool {
  position: relative;   /* this is key */
  /*cursor: help;*/
}
 
div.tool span.tip {
  display: none;        /* so is this */
}

/* tooltip will display on :hover event */
 
div.tool:hover span.tip {
  display: block;
  z-index: 100;
  position: absolute;
  bottom: 3em;
  left: 0;
  width: auto;
  padding: 3px 7px 4px 6px;
  border: 1px solid #336;
  background-color: #FCFEE9;
  font: normal 1.2em arial, helvetica, sans-serif;
  text-align: left;
  color: #000;
}

#descriptionImg div.tool:after {
  padding-left: 2px;            /* eye candy */
  /*content: url(/img/bubble.gif);*/
}

/* css/tooltip.css */