/* CSS Document */

a.tooltip{		
	border-bottom: 1px dashed blue;
	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: #faf2d0;
	border: 1px solid blue;
	padding: 10px;		
	color: #333333;
	text-decoration: none;
	width: 300px;
	z-index: 100;
	top: -85px;	
	left: -40px;	
}
