/*This file exists to provide styles to different elements that may
 be required through the entire shopping experience.  IE: Modals and Validation.
List of elements that are styled through this page:
(Please keep updated as you add/remove elements)
*Validation
*Modals

For validation place this HTML code where you would like the reported errors to show 
on a given jsp page.

<div id="formErrors" class="formErrors">Form Errors:<br /><div class="errorIds" ><span style="color:red;"></span></div></div>


*/




/*Validation Styles*/
body .formErrors{display:none;border:1px solid #FF000A; background-color:#FFDFE0 !important; padding:10px;margin-bottom:15px;}


.formErrors label.error{
	display:block !important;
	background-color:#FFDFE0;
	font-size: 1em !important;
	clear: right;
	margin:0px !important;
	padding:0px !important;
	font-color: #FF0000;
}

body .formWarning {
		background-color:#fcedc5 !important;
		border:1px solid #f3b619;
		color:#e68240;
		display:none;
		margin-bottom:15px;
		padding:10px;
		font-weight: bold;
	}

.errorIds label, .errorIds label.error{border:none !important;}




