/* tooltip */

/* TOOLTIP NORMAL */

a.tip{
    position:relative;
    color:#036;
    z-index:25;
    text-decoration:none;
}

a.tip:hover{
    z-index:26;
    background:transparent; /* precisa do background para funcionar o Internet Explorer */
    color: #09C;
}

a.tip span{display: none;}

a.tip:hover span{
    display:block;
    position:absolute;
    padding: 1px;
    top: 25px;
    left: 10px;
    width:200px;
    border:1px solid #CCC;
    background-color:#FFF;
    color:#999;
    text-align: center;
}




a.tip2{
    position:relative;
    color:#036;
    z-index:25;
    text-decoration:none;
}

a.tip2:hover{
    z-index:26;
    background:transparent; /* precisa do background para funcionar o Internet Explorer */
    color: #09C;
}

a.tip2 span{display: none;}

a.tip2:hover span{
    display:block;
    position:absolute;
    padding: 1px;
    top: 25px;
    left: 10px;
    width:100px;
    border:1px solid #FFF;
    background-color:#036;
    color:#FFF;
    text-align: center;
	font-weight:bold;
}