a.info{
	position:relative; /*this is the key*/
	z-index:24;
	text-decoration: none;
}

a.info:hover{z-index:25; }

a.info span.tooltip{
	display: none;
}

a.info:hover span.tooltip{ /*the span will display just on :hover state*/
	display:block;
	position:absolute;
	top:-55px;
	width:250px;
	border:1px solid #CCCCCC;
	background-color:#E9E9E9;
	color:#000;
	text-align: left;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-decoration: none;
	text-indent: 0px;
	padding: 7px;
	left: -125px;
	line-height: 13px;
}

