@charset "utf-8";
/* tooltip.css -- fancy tooltips */

span.tool {
  position: relative;   /* this is key */
  cursor: help;
}
 
span.tool span.tip {
  display: none;        /* so is this */
}

/* tooltip will display on :hover event */
 
span.tool:hover span.tip {
  display: block;
  z-index: 100;
  position: absolute;
  top: 20px;
  left: 0;
  width: 231px;
  height:90px;
  margin-top:-100px;
  padding: 20px 7px 4px 0px;
  background : url(images/speech_bubble.png) no-repeat;
  font: bold 1em/1.2em arial, helvetica, sans-serif;
  text-align: center;
  color: #fff;
}

#content span.tool:after {
  padding-left: 2px;            /* eye candy */
  content: url(/images/cloud.gif);
}

/* css/tooltip.css */


