@charset "utf-8";
/* CSS Document */
a.info{
    position:relative; /*this is the key*/
    z-index:24; background-color:#fff;
    color:#a00;
	font-size:12px;
    text-decoration:none}

a.info:hover{z-index:25; background-color:#ff0}

a.info span{display: none}

a.info:hover span{ /*the span will display just on :hover state*/
    display:block;
    position:absolute;
    top:2em; left:2em; width:16em;
    border:1px solid #0cf;
    background-color:#d0817b; color:#fff;
    text-align: center;
	padding:5px;
	}

a.info img {
	width:15px;
	height:15px;
	margin:2px;
	padding:0px;
	border:0px;
}
 
