@charset "utf-8";
/* Form CSS */

form {
	width: 700px;
}

fieldset {
	margin: 1em 0;
	padding: 1em;
	border: 1px solid #8B684C;
	background-image: url(../images/form-bg.jpg);
	background-repeat: repeat-x;
}

legend {
	font-weight: bold;
}

label {
	display: block;
	color: #E3CDAE;
	font-weight: bold;

}

input {
	width: 200px;
}

textarea {
	width: 200px;
	height: 100px;
}

input[type="text"] {
	width: 200px;
}

input:focus, textarea:focus {
	background: #B38862;
}

.required {
	font-size: 0.75em;
	color: #760000;
}

input.submit, input.reset {
	background-color: #2F1B12;
	color: #E3CDAE;
	font-weight: bold;
	width: 100px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #916C4F;
	border-right-color: #2F1B12;
	border-bottom-color: #2F1B12;
	border-left-color: #916C4F;
}

