/* D3 tooltip */
#D3Tip{
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	padding: 3px 8px;
	background: #3b3b3b;
	background: -moz-linear-gradient(top,  #3b3b3b 0%, #1d1d1d 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3b3b3b), color-stop(100%,#1d1d1d));
	background: -webkit-linear-gradient(top,  #3b3b3b 0%,#1d1d1d 100%);
	background: -o-linear-gradient(top,  #3b3b3b 0%,#1d1d1d 100%);
	background: -ms-linear-gradient(top,  #3b3b3b 0%,#1d1d1d 100%);
	background: linear-gradient(top,  #3b3b3b 0%,#1d1d1d 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3b3b3b', endColorstr='#1d1d1d',GradientType=0 );
	z-index: 9999;
	color: #ffffff;
	font-size: 11px;
	opacity: 0.8;
	position: absolute;
	pointer-events: none;
	margin-top: 20px;
	margin-left: 10px;
}

#D3Tip.hidden{
	display: none;
}

path:hover{
	opacity: 0.65;
}

path[status="true"]{
	fill : #28B62C
}

path[status="false"]{
	fill : #FF4136
}