/* @override http://miningcareers.org/css/contactform.css */

form {
	font-size: 1.2em;
	/*width: 30em;*/
	background-color: #f4f4f4;
	padding: 1em;
	/*border: 1px solid #000;*/
}


/* fieldset styling */
fieldset {
	margin: 1em; /* space out the fieldsets a little */
	padding: 1em;
	border : 1px solid #bbd;
}

/* legend styling */
legend {
	font-weight: bold;
	color: #0172AE;
}

/* style for  labels */
label {
	display: block;
}

input {
	width: 200px;
}

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

input.submit {
	width: auto;
}

input.radio {
	float: left;
	margin-right: 1em;
}

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

/* style for required labels */
label .required {
	font-size: 0.75em;
	color:#760000;
}