/* simple css-based tooltip */
.tooltip {
	font-family: Arial;
	padding:17px 15px;
	width:250px;
	display:none;
	color:#fff;
	text-align:left;
	font-size:12px;
	font-weight: bold;
	background-image: url('images/black_blackground.png');
	background-color: #717171;
	background-repeat: no-repeat;
	background-position: center top;
	border: 5px solid white;
	/* outline radius for mozilla/firefox only */
	/* -moz-box-shadow:0 0 10px #000;
	-webkit-box-shadow:0 0 10px #000; */
	z-index: 9;
}