/* tooltip styling. uses a background image (a black box with an arrow) */
div.tooltip {
	background: transparent url(/data/images/tooltip.png) no-repeat scroll 0 0;
	font-size: 11px;
	height: 139px;
	padding: 10px;
	width: 219px;
	display: none;
	color: #9c9c9c;
	text-align: left;
	z-index: 9999;
	overflow: hidden;
}

/* tooltip title element (h3) */
div.tooltip h3 {
	margin: 0;
	font-size: 15px;
	color: #fff;
	margin-bottom: 15px;
	white-space: nowrap;
}

div.tooltip p {
	margin: 5px 0px
}