@charset "UTF-8";
/* CSS Document */

a.info{
	position:relative; /*this is the key*/
	z-index:24;
	text-decoration:underline
}

a.info:hover{
	z-index:25;
	text-decoration: none;
}

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:15em;
	background-color:#FFFFFF;
	color:#72753B;
	text-align: center;
	border-top-width: 2px;
	border-bottom-width: 2px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #72753B;
	border-bottom-color: #72753B;
}
