/* 4Preview Image */

a.info{
    position: relative; /*this is the key*/
    z-index: 24; 
	background-color:#FFF;
    color:#000000;
	font-weight:bold;
    text-decoration:none;
	cursor:pointer;
}

a.info:hover
{
	z-index:25; background-color:#FFFFFF;
}

a.info span
{
	display: none;
}

a.info:hover span
{ 	/*the span will display just on :hover state*/
    display: block;
    position: absolute;
	top:10px;
	width:150px;
	padding:10px;
	left: 10px;
	color: #000000;
	text-align:left;
    border: 1px solid #000000;
    background-color:#FFFFCC;
	font-weight:normal;
}