	/* form element visual styles */
	input, textarea, select { 
		border:1px solid #aaa;
		box-shadow: 0px 0px 3px #ccc, 0 10px 15px #eee inset;
		border-radius:2px;
	}
	
	input:focus, textarea:focus {
		background: #fff; 
		border:1px solid #555; 
	}

	label.error {
		color:red !important;
	}

	/* === HTML5 validation styles === */	
	input.required:not([type='radio']), select.required, textarea.required {
		background-color: #fff !important;
		background-image: url(images/red_asterisk.png) !important;
		background-position-x: 95%;
		background-position-y: center;
		background-repeat: no-repeat;
	}

	input.required.valid:not([type='radio']), select.required.valid, textarea.required.valid {
		background-color: #fff !important;
		background-image: url(images/valid.png) !important;
		background-position-x: 95%;
		background-position-y: center;
		background-repeat: no-repeat;
		box-shadow: 0 0 5px #5cd053 !important;
		border-color: #28921f !important;
	}

	input.required.invalid:not([type='radio']), select.required.invalid, textarea.required.invalid {
		background-color: #fff !important;
		background-image: url(images/invalid.png) !important;
		background-position-x: 95%;
		background-position-y: center;
		background-repeat: no-repeat;
		box-shadow: 0 0 5px #d45252 !important;
		border-color: #b03535!important;
	}
