/* CSS Document */

a.tooltip{		
}

a:hover.tooltip{ 
	padding: 0; 
	
} 

.tooltip:hover span span{
	display: block !important;
}

.tooltip span{	
	position: absolute;	
	text-decoration: none;	
}

.tooltip span span{
	display:none !important;
	position: absolute;
	background-color: #E2EFF0;
	border: 1px solid green;
	padding: 10px;		
	color: black;
	text-decoration: none;
	width: 200px;
	z-index: 100;
	top: 10px;	
	left:50px;	
}
