/*
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: #7c5955;
	-moz-border-radius: 5px; 
	-webkit-border-radius: 5px;
	padding: 5px;
	opacity: 0.85;
}
#tooltip h3, #tooltip div { 
	color: #FFF;
	font-size: 12px;
	font-weight: 100;
	margin: 0; }
