.tooltipBootstrap {
  position: absolute;
  z-index: 1030;
  display: block;
  font-size: 10px;
  line-height: 1.4;
  opacity: 0;
  filter: alpha(opacity=0);
  visibility: visible;
}

.tooltipBootstrap.in {
  opacity: 1;
  filter: alpha(opacity=100);
}

.tooltipBootstrap.top {
  padding: 5px 0;
  margin-top: -3px;
}

.tooltipBootstrap.right {
  padding: 0 5px;
  margin-left: 3px;
}

.tooltipBootstrap.bottom {
  padding: 5px 0;
  margin-top: 3px;
}

.tooltipBootstrap.left {
  padding: 0 5px;
  margin-left: -3px;
}

.tooltipBootstrap-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 4px;
  white-space: pre-wrap;
}

.tooltipBootstrap-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.tooltipBootstrap.top .tooltipBootstrap-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-top-color: rgba(0, 0, 0, 0.9);
  border-width: 5px 5px 0;
}

.tooltipBootstrap.top-left .tooltipBootstrap-arrow {
  bottom: 0;
  left: 5px;
  border-top-color: rgba(0, 0, 0, 0.9);
  border-width: 5px 5px 0;
}

.tooltipBootstrap.top-right .tooltipBootstrap-arrow {
  right: 5px;
  bottom: 0;
  border-top-color: rgba(0, 0, 0, 0.9);
  border-width: 5px 5px 0;
}

.tooltipBootstrap.right .tooltipBootstrap-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-right-color: rgba(0, 0, 0, 0.9);
  border-width: 5px 5px 5px 0;
}

.tooltipBootstrap.left .tooltipBootstrap-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-left-color: rgba(0, 0, 0, 0.9);
  border-width: 5px 0 5px 5px;
}

.tooltipBootstrap.bottom .tooltipBootstrap-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-bottom-color: rgba(0, 0, 0, 0.9);
  border-width: 0 5px 5px;
}

.tooltipBootstrap.bottom-left .tooltipBootstrap-arrow {
  top: 0;
  left: 5px;
  border-bottom-color: rgba(0, 0, 0, 0.9);
  border-width: 0 5px 5px;
}

.tooltipBootstrap.bottom-right .tooltipBootstrap-arrow {
  top: 0;
  right: 5px;
  border-bottom-color: rgba(0, 0, 0, 0.9);
  border-width: 0 5px 5px;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
          transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}