
/*the span will display just on :hover state width:15em; width:10em;*/

a.info
	{
	position:relative; /*this is the key*/
	z-index:24;
	text-decoration:none;
	}

a.info:hover{z-index:25;}

a.info span{display: none;}

a.info:hover span
	{
	display:block;
	position:absolute;
	top:2em; left:3em;
	padding:5px;
	white-space: nowrap;
	border:1px solid #000;
	background-color:#FFFCE6; color:#000;
	text-align: center;
	}



div.info
	{
	position:relative; /*this is the key*/
	z-index:24;
	text-decoration:none;
	}

div.info:hover{z-index:25;}

div.info span{display: none}

div.info:hover span
	{
	/* The span will display just on :hover state. */
	display:block;
	position:absolute;
	top:2em; left:3em;
	padding:5px;
	white-space: nowrap;
	border:1px solid #000;
	background-color:#FFFCE6; color:#000;
	text-align: center;
	}


