/* TipTip CSS - Version 1.2 */

#tiptip_holder {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 99999;
}

#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: 11px;
	color: #fff;
	padding: 8px 8px;
	border: 0 solid rgba(0,0,0,0.25);
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.80);
	background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(transparent), to(#000));
	box-shadow: 0 0 3px #000;
	-webkit-box-shadow: 0 0 3px #000;
	-moz-box-shadow: 0 0 3px #000;
  display:block;
}

#tiptip_content ul,
#tiptip_content li {
	margin:0;
	list-style:none
}

#tiptip_content li {
	padding:5px 8px 5px 8px;
	list-style:none;
	float:none;
  margin:0 0 0 0;	
}

#tiptip_content li a,
#tiptip_content li a:active,
#tiptip_content li a:focus,
#tiptip_content li a:visited {
  color:#FFF;
} 


#tiptip_content li a:hover {
  color:#FFF;
  text-decoration:underline;
}

/*

#tiptip_content li:first-child {
	 background:url("../images/bg_o80.png") repeat scroll 0 0;
}
*/

#tiptip_arrow, #tiptip_arrow_inner {
	position: absolute;
	border-color: transparent;
	border-style: solid;
	border-width: 6px;
	height: 0;
	width: 0;
}

#tiptip_holder.tip_top #tiptip_arrow {
	border-top-color: #333;
	border-top-color: rgba(0,0,0,0.99);
}

#tiptip_holder.tip_bottom #tiptip_arrow {

	border-bottom-color: #333;
	border-bottom-color: rgba(0,0,0,0.80);
}

#tiptip_holder.tip_right #tiptip_arrow {
	border-right-color: #333;
	border-right-color: rgba(0,0,0,0.80);
}

#tiptip_holder.tip_left #tiptip_arrow {
	border-left-color: #fff;
	border-left-color: rgba(0,0,0,0.80);
}

#tiptip_holder.tip_top #tiptip_arrow_inner {
	margin-top: -7px;
	margin-left: -6px;
	border-top-color: rgb(51,51,51);
	border-top-color: rgba(0,0,0,0.33);
}

#tiptip_holder.tip_bottom #tiptip_arrow_inner {
	margin-top: -5px;
	margin-left: -6px;
	border-bottom-color: rgb(51,51,51);
	border-bottom-color: rgba(0,0,0,0.80);
}

#tiptip_holder.tip_right #tiptip_arrow_inner {
	margin-top: -6px;
	margin-left: -5px;
	border-right-color: rgb(51,51,51);
	border-right-color: rgba(0,0,0,0.80);
}

#tiptip_holder.tip_left #tiptip_arrow_inner {
	margin-top: -6px;
	margin-left: -7px;
	border-left-color: rgb(51,51,51);
	border-left-color: rgba(0,0,0,0.80);
}



