/* CSS Document */

a.tooltip{		
	border-bottom: 1px dashed red;
	text-decoration: none;	
}

a:hover.tooltip{ 
	padding: 0; 
	
} 

.tooltip:hover span span{
	display: block;
}

.tooltip span{	
	position: absolute;	
	text-decoration: none;	
}

.tooltip span span{
	display: none;	
	position: absolute;
	background-color: #F8ECEC;
	border: 1px solid red;
	padding: 10px;		
	color: black;
	text-decoration: none;
	width: 350px;
	z-index: 100;
	top: 20px;	
	left: -30px;	
}