.tooltip, .arrow:after {
 /* background: black;
  border: 2px solid white;*/
  background:url("../images/tooltip.png") no-repeat scroll 0 0 transparent;
  width:93px;
}

.tooltip {
  /*pointer-events: none;*/

  /*filter: alpha(opacity=0);*/
  display:none;
  position: absolute;
  padding:10px 0px 34px!important;
  color: white;
  margin-top: 20px;
  text-align: center;
  font: bold 14px "Helvetica Neue", Sans-Serif;
  font-stretch: condensed;
  text-decoration: none;
  text-transform: uppercase; text-align:center;
  /*box-shadow: 0 0 7px black;*/
}
.arrow {
  width: 70px;
  height: 16px;
  overflow: hidden;
  position: absolute;
  left: 50%;
  margin-left: -35px;
  bottom: -40px;
}
.arrow:after {
 /* content: "";*/
  position: absolute;
  left: 20px;
  top: -20px;
  width: 25px;
  height: 25px;
 /* -webkit-box-shadow: 6px 5px 9px -9px black,
                      5px 6px 9px -9px black;
  -moz-box-shadow: 6px 5px 9px -9px black,
                   5px 6px 9px -9px black;
  box-shadow: 6px 5px 9px -9px black,
              5px 6px 9px -9px black;
  -webkit-transform: rotate(45deg);
  -moz-transform:    rotate(45deg);
  -ms-transform:     rotate(45deg);
  -o-transform:      rotate(45deg);*/
}
.tooltip.active {
  display:block;
  /*filter: alpha(opacity=100);*/
  margin-top: 5px;
  /*-webkit-transition: all 0.2s ease;
  -moz-transition:    all 0.2s ease;
  -ms-transition:     all 0.2s ease;
  -o-transition:      all 0.2s ease;*/
}
.tooltip.out {
	display:none;
  /*opacity:0;
  filter: alpha(opacity=0);*/
  margin-top: -20px;
}