/* TipTip CSS - Version 1.2 */

#tiptip_holder {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
  line-height:1.2em;
}

#tiptip_holder.tip_top { padding-bottom: 5px; }
#tiptip_holder.tip_bottom { padding-top: 5px; }
#tiptip_holder.tip_right { padding-left: 5px; }
#tiptip_holder.tip_left { padding-right: 5px; }

#tiptip_content {
  font-size:14px;
  color:#7d7d7d;
  padding:10px 8px;
  background-color:rgb(255,255,255);
  background-color:rgba(255,255,255,0.92);
  -webkit-border-radius:2px;
  -moz-border-radius:2px;
  border-radius:2px;
  -webkit-box-shadow:0 0 5px #8c5b3e;
  -moz-box-shadow:0 0 5px #8c5b3e;
  box-shadow:0 0 5px #8c5b3e;
}

#tiptip_arrow, #tiptip_arrow_inner {
  position: absolute;
  border-color: transparent;
  border-style: solid;
  border-width: 8px;
  height: 0;
  width: 0;
}

#tiptip_holder.tip_top #tiptip_arrow {
  border-top-color: #fff;
  border-top-color: rgba(255,255,255,0.35);
}
  #tiptip_holder.tip_top #tiptip_arrow_inner {
    margin-top:-8px;
    margin-left:-7px;
    border-top-color:rgb(255,255,255);
    border-top-color:rgba(255,255,255,0.92);
  }

#tiptip_holder.tip_bottom #tiptip_arrow {
  border-bottom-color: #fff;
  border-bottom-color: rgba(255,255,255,0.35);
}
  #tiptip_holder.tip_bottom #tiptip_arrow_inner {
    margin-top: -6px;
    margin-left: -7px;
    border-top-color:rgb(255,255,255);
    border-top-color:rgba(255,255,255,0.92);
  }

#tiptip_holder.tip_right #tiptip_arrow {
  border-right-color: #fff;
  border-right-color: rgba(255,255,255,0.35);
}
  #tiptip_holder.tip_right #tiptip_arrow_inner {
    margin-top:-8px;
    margin-left:-12px;
    border-right-color: rgb(255,255,255);
    border-right-color: rgba(255,255,255,0.92);
  }

#tiptip_holder.tip_left #tiptip_arrow {
  border-left-color: #fff;
  border-left-color: rgba(255,255,255,0.35);
}
  #tiptip_holder.tip_left #tiptip_arrow_inner {
    margin-top: -7px;
    margin-left: -8px;
    border-left-color: rgb(255,255,255);
    border-left-color: rgba(255,255,255,0.92);
  }


/* Webkit Hacks  */
@media screen and (-webkit-min-device-pixel-ratio:0) {	
	#tiptip_content {
		padding: 4px 8px 5px 8px;
		background-color: rgba(255,255,255,0.88);
	}
	#tiptip_holder.tip_bottom #tiptip_arrow_inner { 
		border-bottom-color: rgba(255,255,255,0.88);
	}
	#tiptip_holder.tip_top #tiptip_arrow_inner { 
		border-top-color: rgba(255,255,255,0.92);
	}
}