 /*this is the hyperlinked text or picture*/
a.advert_info{
    position:relative; 
    /*z-index:54; */

	}

a.advert_info:hover{
	/*z-index:25;*/ 
	color: Black;
	}

/* This is the hovering tooltip*/
a.advert_info span{
	display: none;
	}
	
a.advert_info:hover span{ /*the span will display just on :hover state*/
    display:block;
    position:absolute;
    top:0px; 
	left:20px; 
	width:400px;
    border:1px solid DarkGray;
    background-color:Wheat; 
	color:Black;
    text-align: left;
	padding: 5px;
	font-weight: normal;
	line-height: 20px;
	}

