/* invalid input */
.bvalidator_invalid {
	background-color: #FFFFAE
}
/* error message */
.bvalidator_errmsg {
	background-color: #333;
	font-size: 10px;
	border: 1px solid #999;
	color: #FFF;
	display: none;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	-moz-border-radius-bottomleft: 0;
	-moz-border-radius-topleft: 0;
	-webkit-border-bottom-left-radius: 0;
	-moz-border-radius-bottomleft: 0;
	border-bottom-left-radius: 0;
	-webkit-border-top-left-radius: 0;
	-moz-border-radius-topleft: 0;
	border-top-left-radius: 0;
	-moz-box-shadow: 0 0 6px #ddd;
	-webkit-box-shadow: 0 0 6px #ddd;
	box-shadow: 0 0 6px #ddd;
	white-space: nowrap;
	padding-top: 2px;
	padding-right: 10px;
	padding-bottom: 2px;
	padding-left: 5px;
	font-family: Arial, Helvetica, sans-serif;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
	filter: alpha(opacity=90);
	opacity: 0.9;
	filter: alpha(opacity=90)
}
/* close icon */
.bvalidator_errmsg .bvalidator_close_icon {
	margin-left: 5px;
	margin-top: -2px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #F96;
	cursor: pointer
}
/* arrow */
.bvalidator_errmsg em {
	display: block;
	border-color: #333 transparent transparent;
	border-style: solid;
	border-width: 10px 10px 0;
	height: 0;
	width: 0;
	position: absolute;
	bottom: -10px;
	left: 5px
}


/***********************
RED THEME
***********************/

/* invalid input */
.bvalidator_red_invalid{
	background-color: #FCC;
}

.bvalidator_red_errmsg em.up 
{
	border-color: transparent transparent #F33 transparent;
	border-width: 10px;
}

/* error message */
.bvalidator_red_errmsg {
	background-color:#F33;
	font-size:12px !important;
	font-weight: bold;
	color:#FFF;
	display:none;
	white-space:nowrap;
	padding: 2px;
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;	
	border-radius: 5px;
	border:1px solid #900;
	line-height: normal;
	/*
	border:1px dashed #900;
	padding-top: 2px;
	padding-right: 10px;
	padding-bottom: 2px;
	padding-left: 5px;
	filter:alpha(opacity=90);
	opacity:.9;
	-moz-opacity:.9;
	*/
}
/*
.bvalidator_red_errmsg {
	font-size:10px;
	border:none;
	color:#FFF;
	display:none;
	white-space:nowrap;
	padding-top: 2px;
	padding-right: 10px;
	padding-bottom: 2px;
	padding-left: 5px;
	font-family: Arial, Helvetica, sans-serif;
	-moz-opacity:.75;
	filter:alpha(opacity=75);
	opacity:.75;
	font-weight: bold;
}*/

/* close icon */
.bvalidator_red_errmsg .bvalidator_red_close_icon 
{
	margin-left: 10px;
	margin-top: -2px;
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #fff;
	cursor: pointer
	/*
	margin-left: 20px;
	margin-top: -8px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	color:#fff;
	cursor:pointer;
	font-size: 12px !important;
	vertical-align: top;
	padding: 2px 4px;
	border: 1px solid white;
	border-left-color: Gray;
	border-bottom-color: Gray;
	background-color: #cc0700;
	display: none;
	*/
}

.bvalidator_red_errmsg .bvalidator_red_close_icon i
{
	color: Maroon;
}

/* arrow */
.bvalidator_red_errmsg em {
	display:block;
	border-color: #F33 transparent transparent;
	border-style: solid;
	border-width: 10px 10px 0;
	height: 0;
	width: 0;
	position:absolute;
	bottom:20px;
	left:5px;
}

/* custom */
.bVErrMsgContainer
{
	z-index: 1000;
}