@charset "UTF-8";
/* tooltip classes */
.js_validation_tooltip {
	position: absolute;
	z-index: 1021;
	background-image: url(../js_images/tooltip_arrow.gif);
	background-position: left center;
	background-repeat: no-repeat;
	width: 300px;
	font-size: 0.85em;
}
.js_validation_tooltip p {
	color: #FFF;
	background-color: #900;
	margin-left: 7px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	padding-left: 10px;
	padding-right: 10px;
}
/* interactive classes */
.js_validation_interactive {
	color: #C00;
	font-weight: bold;
}
.js_validation_error {
	background-color: #FFCAC7;
}
.js_validation_correct {
	background-color: #CAF9B9;
}
.js_validation_focus {
	background-color:#FFC;
}
input.js_validation_error {
	background-image: url(../js_images/ico_form_error.gif);
	background-position: center right;
	background-repeat: no-repeat;
}
input.js_validation_correct {
	background-image:url(../js_images/ico_form_accepted.gif);
	background-position: center right;
	background-repeat: no-repeat;
}
textarea.js_validation_error {
	background-image: url(../js_images/ico_form_error.gif);
	background-position: 2px right;
	background-repeat: no-repeat;
}
textarea.js_validation_correct {
	background-image:url(../js_images/ico_form_accepted.gif);
	background-position: 2px right;
	background-repeat: no-repeat;
}

/* the transparent overlay */
#js_alert_overlay { 
	background-color: #333333;
	position: absolute;
	z-index: 9000;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity:.80;
	filter: alpha(opacity=80);
}
#js_alert {
	position: absolute;
	z-index: 90001;
	color: #FFF;
	background-color: #444958;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	filter: alpha(opacity=70);
	border: 10px solid #7c808a;
	text-align: center;
	padding: 20px;
	width: 300px;
}
#js_alert a {
	color: #000;
	text-decoration: none;
	display: block;
	background-color: #7c808a;
	width: 80px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 5px;
	padding-bottom: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}

