 /* http://www.kollermedia.at/archive/2008/03/24/easy-css-tooltip/# */
 .tooltip {
  display: inline-block;
  width:12px;
  height:12px;
  background: url("/img/sizicons/comment_blue.png") no-repeat left center;
  background-size: 12px 12px;
  cursor:pointer;
 }
/*  a.tooltip:hover {background:#ffffff; text-decoration:none;} /*BG color is a must for IE6*/
 a.tooltip span {display:none; z-index: 200; padding:2px 3px; padding: 10px; margin-left:8px; width:200px; text-align: left; font-size: 12px; }
 a.tooltip:hover span{display:inline; position:absolute; background: rgb(255,255,225); border:1px solid black; color:black;}
 div.tooltip:hover {background:#ffffff; text-decoration:none;} /*BG color is a must for IE6*/
 div.tooltip span {display:none; z-index: 200; padding:2px 3px; padding: 10px; margin-left:8px; width:200px; text-align: left; font-size: 12px; }
 div.tooltip:hover span{display:inline; position:absolute; background: rgb(255,255,225); border:1px solid black; color:black;}
