/* Kiegan's tooltip definition */
.toolTip {
	position: absolute;
  visibility: hidden;
  z-index: 10;
  min-width: 50px;
  height: auto;
  background: none repeat scroll 0 0 #ffffff;
  padding: 9px 14px 6px 14px;
  border-radius: 2px;
  text-align: center;
  line-height: 1.3;
  color: #5B6770;
  font-size: 18;
  box-shadow: 0px 3px 9px rgba(0, 0, 0, .15);
}

.toolTip:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid white;
  position: absolute;
  top: 100%;
  left: 5%;
  /*margin-left: -12px; */
}
.toolTip span {
	font-weight: 500;
	font-size: 18px;
  color: #081F2C;
}
/* Peter's tooltip definition */
.toolTipDotPlot {
	position: absolute;
  visibility: hidden;
  z-index: 10;
  min-width: 50px;
  height: auto;
  background: none repeat scroll 0 0 #ffffff;
  padding: 9px 14px 6px 14px;
  border-radius: 2px;
  text-align: center;
  line-height: 1.3;
  color: #5B6770;
  box-shadow: 0px 3px 9px rgba(0, 0, 0, .15);
}
.toolTipDotPlot:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid white;
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -12px;
}
.toolTipDotPlot span {
	font-weight: 500;
	font-size: 18px;
  color: #081F2C;
}
