/*
#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 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;	
	position: absolute;
	z-index: 3000;
	border: 1px solid #111;
	background-color: #0f110e; 
	color:#dcefd2;
	padding: 5px;
	opacity: 0.50;
}

#tooltip h3, #tooltip div { margin: 0; }

#tooltip h3 {
	font-weight: normal;
	font-size: 11px;	
}

#tooltip strong {
	color: #FFF;
}

.small {

}

#tooltip.pretty {
	font-family: Arial;
	border: none;
	width: 210px;
	padding:20px;
	height: 135px;
	opacity: 0.8;
	background: url(../graphics/tooltip_.png);
}
#tooltip.pretty h3 {
	margin-bottom: 0.75em;
	font-size: 12pt;
	width: 220px;
	text-align: center;
}
#tooltip.pretty div { width: 220px; text-align: left; }

