/* Relativer Tooltip */
a.tooltip, a.tooltip:link, a.tooltip:visited, a.tooltip:active  {
  position: relative;
  text-decoration: none; 
/*  font-style: italic; */
/*  color: #0000ff; */
  }
  
a.tooltip:hover {
/*  color: #0000ff; */
  background: transparent;
  }

a.tooltip span {
  display: none;  
  text-decoration: none; 
}

a.tooltip:hover span {
  display: block;
  position: absolute; 
  top: 20px; 
  left: -300px; 
  width: 300px;
  z-index: 100;
  margin: 0;
  padding: 4;
  color: #000000; 
  border:1px solid #D5D6D8; 
  background: #FFFFFF;
/*  font: 12px Verdana, sans-serif; */
  font-size: 10px; 
  text-align: left;
  }
  
a.tooltip span h1 {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 11px; 
  font-weigth: bold;
/*  color: yellow; 
  background-color: gray; */
  border: 0px;
/*  border-bottom: 1px solid black; */
}


