@charset "utf-8";
/* CSS Document */
a.tooltip{
position: relative;
z-index: 20;
color: #80A0CF;
text-decoration: underline;
}

a.tooltip:hover{
z-index: 25;
}

a.tooltip span{ /* Span Element nicht anzeigen */
display: none;
}

a.tooltip:hover span{ /* Span Element nur angezeigt beim Ueberfahren mit der Maus */
background: #819FD2; /* Hintergrundbild */
display: block; /* macht aus dem Inlineelement ein Blockelement */
position: absolute;
top: 1.8em; /* abstand von oben */
left: 1.8em; /* abstand von links */
width: 15em; /* breite */
padding: 3px 7px; /* Innenabstand */
border: 1px solid #BABABA; /* Rahmenfarbe */
color: #EBEBEB; /* Textfarbe */
text-align: left; /* Textausrichtung */
font-size:7pt;
font-family:Impact;
}

a.tooltip:hover span strong{
color: #D9D5E7;
}
