/* hint popup style */
/*****************************************************************/
.tip-bb, .tip-error {
	z-index:10001000;
	text-align:left;
	text-transform: capitalize;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	padding:6px 8px;
	min-width:50px;
	max-width:300px;
	color:#000;
	/**
	 * - If you set a background-image, border/padding/background-color will be ingnored.
	 *   You can set any padding to .tip-inner instead if you need.
	 * - If you want a tiled background-image and border/padding for the tip,
	 *   set the background-image to .tip-inner instead.
	 */
	-moz-box-shadow: 3px 3px 5px #808080;
	-webkit-box-shadow: 3px 3px 5px #808080;
	box-shadow: 3px 3px 5px #808080;
	visibility:hidden;
	position:absolute;
	top:0;
	left:0;
	font-size: 12px;
	font-family: "Helvetica Neue" , "Lucida Grande" , "Segoe UI" , Arial, Helvetica, Verdana, sans-serif;
}

.tip-error {
	background-color:#FFEBE8;
	border:#DD3C10 1px solid;
}

.tip-bb {
	background-color:#e7eeff;
	border:1px solid #9094b7;
}

/* Configure an arrow image - the script will automatically position it on the correct side of the tip */
.tip-arrow-top {
	margin-top:-6px;
	margin-left:-5px; /* approx. half the width to center it */
	top:0;
	left:50%;
	width:9px;
	height:6px;
}

.tip-arrow-right {
	margin-top:-4px; /* approx. half the height to center it */
	margin-left:0;
	top:50%;
	left:100%;
	width:6px;
	height:9px;
}

.tip-arrow-bottom {
	margin-top:0;
	margin-left:-5px; /* approx. half the width to center it */
	top:100%;
	left:50%;
	width:9px;
	height:6px;
}

.tip-arrow-left {
	margin-top:-4px; /* approx. half the height to center it */
	margin-left:-6px;
	top:50%;
	left:0;
	width:6px;
	height:9px;
}

.tip-bb .tip-arrow-top {
	background:url(tip-bb_arrows.gif) no-repeat;
}

.tip-bb .tip-arrow-right {
	background:url(tip-bb_arrows.gif) no-repeat -9px 0;
}

.tip-bb .tip-arrow-bottom {
	background:url(tip-bb_arrows.gif) no-repeat -18px 0;
}

.tip-bb .tip-arrow-left {
	background:url(tip-bb_arrows.gif) no-repeat -27px 0;
}


.tip-error .tip-arrow-top {
	background:url(tip-error_arrows.gif) no-repeat;
}

.tip-error .tip-arrow-right {
	background:url(tip-error_arrows.gif) no-repeat -9px 0;
}

.tip-error .tip-arrow-bottom {
	background:url(tip-error_arrows.gif) no-repeat -18px 0;
}

.tip-error .tip-arrow-left {
	background:url(tip-error_arrows.gif) no-repeat -27px 0;
}
