/* ######################################################################################################
** # Formatierung von Tooltips #############################
** ######################################################################################################
** 
**
*/

@media screen
{

/* Formatierung der Seite */

a.info
{
position:relative;
z-index:1;
background-color:#ffd;
color:#2d006b;
text-decoration:none;
}

a.info:hover
{
z-index:2;
background-color:#bcfc38;
}

a.info span
{
display: none;
}

a.info:hover span
{
display:block;
position:absolute;
top:2em;
left:2em;
width:40em;
border:1px solid #12127D;
background-color:#fee;
color:#000;
text-align: justify;
padding: 5px;
font-size: 0.9em;
} 

}

