/* start tooltipa */
a.info{
    position:relative; /*this is the key*/
    z-index:2; 
	color:#000;
    text-decoration:none}

a.info:hover{
z-index:2; 
background-color:#FFFFFF;
}

a.info span{display: none;
}

a.info:hover span{ /*the span will display just on :hover state*/
    display:block;
    position:absolute;
    top:3em; left:-10px; width:auto;
    border:1px solid #CCCCCC;
    background-color:#FFFFFF;
	color:#333333;
    text-align: center;
	padding:3px;
	filter:alpha(opacity=85);
	-moz-opacity:.85;opacity:.85;
	}
	
/* koniec tooltipa*/
