/*
To style the tooltip, use these selectors in your stylesheet:

#tooltip - The tooltip container

#tooltip h3 - The tooltip title

#tooltip div.body - The tooltip body, shown when using showBody

#tooltip div.url - The tooltip url, shown when using showURL
*/

#tooltip {
	position: absolute;
	z-index: 3000;
	background-color: #F6EFB9;
	padding: 5px;
	opacity: 0.85;
}
#tooltip h3, #tooltip div { 
	color: #4B8Cb3;
	font-size: 12px;
	margin: 0; }

