@charset "utf-8";
/* CSS Document */

a.info{
    position:relative; /*this is the key*/
    z-index:24;;
    color:#000;
    text-decoration:none;
}

a.info:hover{
	z-index:25;
}

a.info span{display: none;
}

a.info:hover span{ /*the span will display just on :hover state*/
    display:block;
    position:absolute;
    margin-top:1px; 
	margin-left:0px; 
	width:15em;
    border:1px solid #999999;	
	border-style: dashed;
	padding: 12px;
    background-color:#000000; color:#FFFFFF;
    text-align: center;
	
}
