/* General Styles
----------------------------------- */
#contact-form fieldset {
	border: none;
	margin: 1em 0;
}

#contact-form fieldset legend {
	color: #889e7a;
	font-size: 110%;
	font-weight: normal;
	margin: 1em 0;
}


/* Fieldsets
----------------------------------- */
#contact-form #message-type,
#contact-form #literature-request {
	border: 1px solid #ccc;
	padding: 1em;
}

#contact-form #contact-info legend,
#contact-form #message-comment legend {
	margin: 1em 0;
	display: block;
	float: left;
}

#contact-info legend {
	width: 400px;
	margin: 0.5em 0;
}

/* Fields
----------------------------------- */
#contact-form div.text-field label,
#contact-form div.select-field label {
	display: block;
	margin-bottom: 0.25em;
}

#contact-form div.text-field,
#contact-form div.select-field {
	float: left;
	width: 220px;
	margin: 0.25em 0;
	height: 3.5em;
}

#contact-form div.text-field input.text {
	float: left;
	width: 150px;
	background-color: #ecf0ea;
	border: none;
	padding: 3px;
}

#contact-form div.select-field select {
	float: left;
	width: 154px;
	border: 1px solid #B7B7B7;
	padding: 1px;
}

#contact-form div.radio-option,
#contact-form div.checkbox-field {
	float: left;
	clear: both;
	width: 350px;
	margin: 0.25em 0;
}

#contact-form div.radio-option label,
#contact-form div.checkbox-field label {
	float: right;
	width: 325px;
}

#contact-form div.radio-option input,
#contact-form div.checkbox-field input {
	float: left;
	width: 25px;
}

#contact-form textarea {
	border: 1px solid #999;
}

/* Button Style
----------------------------------- */
#contact-form div.submit-field #submit {
	padding: 5px;
	border: 1px solid #999;
	font-size: 100%;
}


/* Message Feedback
----------------------------------- */
#flash-message {
	padding: 1em;
	color: #666;
}

.success#flash-message {
	background-color: #98FB98;
	border: 1px dotted #3CB371;
}

.error#flash-message {
	background-color: #FFC0CB;
	border: 1px dotted #DC143C;
}


/* Error Fields
----------------------------------- */
#contact-form div.text-field input.error,
#contact-form #message-comment textarea.error {
	border: 1px dashed #DC143C;
	background-color: #FFC0CB;
}


