/*
    Document   : infobulle//test
    Created on : 22 janv. 2009, 19:29:45
    Author     : damien
    Description:
        Purpose of the stylesheet follows.
*/

/*
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/
/* Infobulles */

.info{

}

a.info{
    position:relative;
    z-index:24; background-color:#ffffff;
    color:#000;
    text-decoration:none;
}
a.info:hover{
        z-index:25;
        background-color:#ffffff;
}

a.info span{
        display: none;
        width:100px;
}

a.info:hover span{
/*le contenu de la balise <em> ne
sera visible que pour l'�tat a:hover */
    display:block;
    position:absolute;
    top:-70px; left:8px; height:80px; width:85px;
    border:1px solid green;
    background-color:#FEBB04; color:black;
    text-align:left;
    font-family: verdana;
	font-size: 11px;
    font-style:normal;
    font-weight:normal;
    padding:3px;
}
