
/* Global form styles */

.extractionsurvey{
	display:block;
	margin: 1em auto;
	width: 100%;
	max-width: 900px;
}

.required {
	color:red;
	font-size:0.8em;
}

.info-form fieldset {
	overflow:hidden;
	padding:10px;
	margin:0 0 30px 0;
	border:1px solid #8491B1;
	border-radius:6px 6px 6px 6px;
	width: 100%;
}

.info-form legend {
	font-size: 1.4em;
	padding: 0 10px;
	text-shadow: 0 1px 1px rgba(0,0,0,0.2)
}

.info-form p {
	margin:0;
	padding:1%;
	overflow:hidden;
}

.info-form label {
	width:35%;
	line-height: 1.25;
	margin-right:2%;
	margin-top:0.5%;
	float:left;
	display:block;
}

.info-form input,
.info-form select,
.info-form textarea {
	border-radius:2px 2px 2px 2px;
	border: 1px solid #CDD2E0;
	color:#444444;
	padding:4px;
	width:60%;
	font:inherit;
}

input.radio, input.checkbox { width:20px; border:none; }
textarea { height:120px; }

.info-form input:hover,
.info-form select:hover,
.info-form textarea:hover {
	border-color: #8491B1;
}

.info-form input:focus,
.info-form select:focus,
.info-form textarea:focus {
		border-color: #8491B1;
		box-shadow: 0 0 3px #CDD2E0;
}


/* Set columns */

.info-form .two-columns p {
	width:48%;
	float:left;
}


/* Set radio selections into rows */

.radios {
	display:inline-block;
	width:60%;
}

.radios span {
	display:block;
}


/* Submission styling */

#form-submission {
	border:none;
	text-align:center;
	padding:0;
}

#submit {
	background-color: #004485;
    border: 0 none;
    border-radius: 4px 4px 4px 4px;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    margin: 0;
    padding: 6px;
    text-decoration: none;
    width: auto;
}

#submit:hover {
	text-decoration:underline;
}

