/* Modified by Andres Enrique */

a.info{
    position:relative; /*this is the key*/
    z-index:24; background-color:#ccc;
    color:#000;
    text-decoration:none}
a.info:hover {
	z-index: 25;
	background-color: #ffffff;
	text-decoration:none;
}
a.info span { display: none; }
a.info:hover span.info {
	/* The span will display just on :hover state. */
    display: block;
	position: absolute;
	font-family: Cambria;
	font-size: 12px;
	top: -45px;
	left: -175px;
	width: 175px;
	color: #ffffff;
	text-align: left;
	text-decoration:none;
}
