a.tooltip{
position: relative;
z-index: 20;
color: red;
}

a.tooltip:hover{
z-index: 25;
}

#topmenu a.tooltip {
  color: #000;
}

#mainmenu a.tooltip {
  color: #000;
}

a.tooltip span{ /* Span Element nicht anzeigen */
display: none;
}

a.tooltip:hover span{ /* Span Element nur angezeigt beim Ueberfahren mit der Maus */
background: #505050; /* Hintergrundbild */
display: block; /* macht aus dem Inlineelement ein Blockelement */
position: absolute;
top: 2.8em; /* abstand von oben */
left: 1.8em; /* abstand von links */
width: 15em; /* breite */
padding: 3px 7px; /* Innenabstand */
border-left: 1px solid #ccc; /* Rahmen */
border-top: 1px solid #ccc;/* Rahmen */
border-bottom: 3px solid #ccc;/* Rahmen */
border-right: 3px solid #ccc;/* Rahmen */
color: #fff; /* Textfarbe */
text-align: left; /* Textausrichtung */
font-size: 12px; /* Schriftgroesse */
}

a.tooltip:hover span strong{
color: #AC93C8;
}

#topmenu a.tooltip:hover span{ /* Span Element nur angezeigt beim Ueberfahren mit der Maus */
background: #505050; /* Hintergrundbild */
display: block; /* macht aus dem Inlineelement ein Blockelement */
position: absolute;
top: 4em; /* abstand von oben */
left: 1.8em; /* abstand von links */
width: 15em; /* breite */
padding: 3px 7px; /* Innenabstand */
border-left: 1px solid #ccc; /* Rahmen */
border-top: 1px solid #ccc;/* Rahmen */
border-bottom: 3px solid #ccc;/* Rahmen */
border-right: 3px solid #ccc;/* Rahmen */
color: #fff; /* Textfarbe */
text-align: left; /* Textausrichtung */
font-size: 12px; /* Schriftgroesse */
}