.tooltip {
  display: none;
  position: absolute;
  border: none;
  background-color: rgba(0,0,0,0.8);
  color: #fff;
  font-size:11px;
  padding: 5px 7px 5px 7px;
  behavior: url(htc/PIE.htc);
border-radius: 3px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-khtml-border-radius: 3px;
box-shadow: 0 1px 1px rgba(0,0,0,0.1);
text-shadow: 0 1px 0 rgba(0,0,0,0.5);
z-index:99999;
}

.tooltip:before {

width: 0;
height: 0;
border-top: 5px solid transparent;
    border-right: 5px solid rgba(0,0,0,0.8);
    border-bottom: 5px solid transparent;
content: "";
z-index: 9999;
margin: 0 0 0 0;
position:absolute;
top: 7px;
left:-5px;
}