/** VALIDATION **/
.form div.required,
.form div.normal,
.form div.error {
	clear: both;
	margin: 3px 0;
	float: left;
	width: 100%;
}

.form .required label,
.form .normal label,
.form .error label {
	display: block;
	float: left;
	width: 180px;
	text-align: right;
	margin-right: 6px;
}

.form .required input,
.form .normal input,
.form .error input {
	display: block;
	float: left;
	width: 200px;
	border: 1px solid #CCC;
	background-color: #FFF;
	padding: 1px;
	color: #000;
	margin-right: 5px;
}

.form input.required,
.form input.error,
.form input.valid {
	background-position: right top;
	background-repeat: no-repeat;
	background-color: #FFF;
	padding-right: 12px;
}

.form input.required { background-image: url(required.jpg); }
.form input.error { background-image: url(error.jpg); }
.form input.valid { background-image: url(good.jpg); }


.form .error_group {
	
}

.form .valid_group {
	
}



/* MESSAGE BOX */
.cazFormMsg {
	position: absolute;
	left: 435px;
	top: -1px;
	background: url(errorMsg.png) left top no-repeat;
	width: 30px;
	height: 24px;
	color: #000;
	cursor: pointer;
}

.cazFormMsg_text {
	display: none;
	background: url(boxtop.png) left top no-repeat;
}

.cazFormMsg_textInner {
	background: url(boxbottom.png) left bottom no-repeat;
	position: relative;
	bottom: -10px;
}

.cazFormMsg_textPadding {
	padding: 0 12px 10px 30px;
}



/**** ERROR MESSAGE ****/
.errorMessage {
	padding: 5px;
	border: 1px solid #FF0000;
	display: none;
}