
/* BUBBLE TOOLTIP */
a.tt {cursor: help;}

.tt span { display: none; }
/*background:; ie hack, something must be changed in a for ie to execute it*/
.tt:hover {   position:relative;text-decoration:none; z-index:1000; color: #808080; background:transparent;}
.tt:hover span.tooltip {
  border: 0;
  background:transparent;
  color: #111;
  display:block;
  position:absolute;
  top:0px; left:-10px;
  padding: 15px 0 0 0;
  width:221px;
  text-align: left;
  text-decoration:none;
  z-index: 2000;
}
.tt:hover span.top {
  display: block;
  padding: 40px 8px 0;
  background: url(/images/blase_blau.png) no-repeat top;
}
.tt:hover span.middle { /* different middle bg for stretch */
  display: block;
  padding: 0 8px; 
  background: url(/images/blase_blau_zwischen.png) repeat bottom; 
}
.tt:hover span.bottom {
  display: block;
  padding:3px 8px 10px;
  color: #808080;
  background: url(/images/blase_blau.png) no-repeat bottom;
}
.tt .fakeLink {text-decoration: underline;}

