/* CSS Document */

/* styles for error messages */

.error {
	font-size: .85em;
	color: #F00;
}

.errorMessage {
	padding-left: 10px;
	margin-left: 10px;
	color: #FF0000;
	margin-top: 10px;
	margin-bottom: 10px;
	border: 1px solid #F00;
	padding-top: 5px;
	padding-bottom: 5px;
}

.form { /* use this to wrap form areas */
	background-color: #ECEDEC;
	border: 1px solid #D7D9D7;
	/*padding: 10px;
	/* to make the form area smaller, change the width via an inline style */
}


/* -------------------------form elements---------------------------------- */
label {
	color:#333333;
	font-size:.85em;
}

select,input {
	display: block;
	font-size: 13px;
	
}

.horizontalDisplay { /* apply to form inputs that should be inline with their label */
	display: inline;
}

input.button01 { /* use for the primary action */
	color: Black;
	font-size: 13px;
	font-weight: bold;
	letter-spacing: 1px;
	display: inline;

}

input.button02 {
	color: #666666;
	font-size: 13px;
	font-weight: bold;
	letter-spacing: 1px;
	display: inline;
	
}

input.button03 {
	color: #394964;
	font-size: 13px;
	font-weight: bold;
	letter-spacing: 1px;
	display: inline;
	
}

form.buttons { /* wrap buttons that need spacing above them in this class */
margin-top:8px;	
}