/* 
	TipTip CSS - Version 1.2 
	http://code.drewwilson.com/entry/tiptip-jquery-plugin
*/

#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 {
	line-height:1.4;
color: #FFF!important;
text-shadow: 0 0 2px #005;
padding: 4px 8px;
border: 1px solid rgba(45,70,150,0.25);
background:#212121;
background-color: rgba(45,70,150,0.92);
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#36c), to(#123472));
border-radius: 3px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
box-shadow: 0 0 3px #36c;
-webkit-box-shadow: 0 0 3px #36c;
-moz-box-shadow: 0 0 3px #36c;
*background:#1c4389;
}
#tiptip_content a{
	color:#88aff0;
	text-decoration:underline;}
#tiptip_content a:hover{color: #FFF}
#tiptip_content h5{color: #FFF}
#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: #123472;
border-top-color: rgba(45,70,150,0.92);
}

#tiptip_holder.tip_bottom #tiptip_arrow {
border-bottom-color: #123472;
border-bottom-color: rgba(45,70,150,0.92);
}

#tiptip_holder.tip_right #tiptip_arrow {
border-right-color: #123472;
border-right-color: rgba(45,70,150,0.92);
}

#tiptip_holder.tip_left #tiptip_arrow {
border-left-color: #123472;
border-left-color: rgba(45,70,150,0.92);
}

#tiptip_holder.tip_top #tiptip_arrow_inner {
margin-top: -7px;
margin-left: -6px;
border-top-color: rgb(45,70,150);
border-top-color: rgba(45,70,150,0.92);
}

#tiptip_holder.tip_bottom #tiptip_arrow_inner {
margin-top: -5px;
margin-left: -6px;
border-bottom-color: rgb(45,70,150);
border-bottom-color: rgba(45,70,150,0.92);
}

#tiptip_holder.tip_right #tiptip_arrow_inner {
margin-top: -6px;
margin-left: -5px;
border-right-color: rgb(45,70,150);
border-right-color: rgba(45,70,150,0.92);
}

#tiptip_holder.tip_left #tiptip_arrow_inner {
margin-top: -6px;
margin-left: -7px;
border-left-color: rgb(45,70,150);
border-left-color: rgba(45,70,150,0.92);
}

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