@charset "utf-8";
/* CSS Document */
a.info{
    position:relative; /*this is the key*/
    z-index:24; background-color:#fff;
    color:#a00;
	font-size:13px;
    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:20em; 
     border:1px solid #0cf;
    background-color:#733433; color:#fff;
    text-align: left;
	text-decoration:none;
	font-variant:normal;
	font-weight:normal;
	font-size:13px;
	
	}

a.info img {
	width:15px;
	height:15px;
	margin:2px;
	padding:0px;
	border:0px;
}
 

