/* 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;
}
.tilTip_head{
text-align:center;
font-weight:bold;
background-color:#2e88d4;
color:white;
}
.tilTip_cont{
background-color: rgb(255, 255, 255);
display:inline-block;

height:100%;
}
#tiptip_content {
	font-size: 11px;
    color: rgb(0, 0, 0);
padding:1px;
    border: 1px solid rgb(75, 161, 219);
    background-color: rgb(75, 161, 219);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 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: #fff;
	border-top-color: rgb(100,100,100);
}

#tiptip_holder.tip_bottom #tiptip_arrow {
	border-bottom-color: #fff;
	border-bottom-color: rgb(100,100,100);
}

#tiptip_holder.tip_right #tiptip_arrow {
	border-right-color: #fff;
	border-right-color: rgb(100,100,100);
}

#tiptip_holder.tip_left #tiptip_arrow {
	border-left-color: #fff;
	border-left-color: rgb(100,100,100);
}

#tiptip_holder.tip_top #tiptip_arrow_inner {
	margin-top: -7px;
	margin-left: -6px;
	border-top-color: rgb(100,100,100);
}

#tiptip_holder.tip_bottom #tiptip_arrow_inner {
	margin-top: -5px;
	margin-left: -6px;
	border-bottom-color: rgb(100,100,100);
}

#tiptip_holder.tip_right #tiptip_arrow_inner {
	margin-top: -6px;
	margin-left: -5px;
	border-right-color: rgb(100,100,100);
}

#tiptip_holder.tip_left #tiptip_arrow_inner {
	margin-top: -6px;
	margin-left: -7px;
	border-left-color: rgb(100,100,100);
}

/* косметика... */
.hasTip {
	border-bottom-color: rgb(0, 117, 187);
	border-bottom-style: dotted;
	border-bottom-width: 1px;
	text-decoration: none;
	cursor: pointer;
	display: inline-block;
}
.hasTip:hover {border-bottom-width: 0;padding-bottom: 1px;}

#tiptip_content a {
	display: block;
	text-align:right;
	color: rgb(0, 125, 200);
}