/* Relativer Tooltip */
a.tooltip, a.tooltip:link, a.tooltip:visited, a.tooltip:active {
  position: relative;
  border-bottom-style: dotted ;
  border-bottom-width: 1px;
  border-bottom-color: black;
  text-decoration: none;
  font-style: normal;
  color: white; 
  }
  
a.tooltip:hover  {
  color: white;
  border-bottom-style: dashed;
  border-bottom-width: 1px;
  border-bottom-color: black;
  background: transparent;
 }

a.tooltip span   {
  display: none;  
  text-decoration: none; 
}

a.tooltip:hover span  {
  display: block;
  position: absolute; 
  top: 20px; 
  left: 0px; 
  width: 500px;
  margin: 2;
  padding: 2;
  z-index: 100;
  color: #000000; 
  border:1px solid #000000; 
  background: #dddddd;
  font: 11px Verdana, sans-serif; 
  text-align: justify;
  text-decoration: ; 
  }

a.tooltip span b {
  font-size: 14px;
  font-weight: bold;
  color: black;
  background-color:  ;
  border: 0px;
}
