/* Validation styles */

input:focus, select:focus, textarea:focus {
	background-color: #e6ffe6;
}

input:focus:valid {
	background: #e6ffe6 url(go.png) bottom right no-repeat;
	
	-o-background-size: contain;
	-moz-background-size: contain;
	-webkit-background-size: contain;
	background-size: contain;
}

input:focus:invalid {
	background: rgb(255, 232, 233) url(stop.png) bottom right no-repeat;
	
	-o-background-size: contain;
	-moz-background-size: contain;
	-webkit-background-size: contain;
	background-size: contain;
}

/* Section Styles */

#signUp {
	font-variant: small-caps;
	font-family: "Times New Roman", Georgia, Serif;
	font-size: 1.1em;
	border-radius: 16px;
   padding: 8px;
	background: #999999;
	position: absolute;
	display: block;
	left: 50%;
	width: 600px;
	height: 300px;
	margin-left: -180px;
	margin-top: 200px;
	border: 20px solid rgba(0, 0, 0, 0.3);
}

#contact {
	font-variant: small-caps;
	font-family: "Times New Roman", Georgia, Serif;
	font-size: 1.1em;
	border-radius: 16px;
   padding: 8px;
	background: #999999;
	position: absolute;
	display: block;
	left: 50%;
	width: 600px;
	height: 300px;
	margin-left: 140px;
	margin-top: 20px;
	border: 20px solid rgba(0, 0, 0, 0.3);
}


/* Field set styles */

fieldset {
	background-color: #636567;
	border: 2px solid black;
	float: none;
	margin: 25px 10px 10px 6%;
	width: 75%;
	clear: both;
}

legend {
	background-color: #0d0d0d;
	color: #dedfe0;
	padding: 3px 3px;
	text-indent: 15px;
	width: 110%;
	font-weight: bold;
	font-size: 1.2em;
}

/* Label styles */

label {
	clear: left;
	display: block;
	float: left;
	margin: 10px 4% 7px 5px;
	width: 40%;
	color: #dedfe0;
	font-size: 1.1em;
}

#printOrCanvas {
	float: none;
	margin-left: 5px;
	text-align: left;
	width: 90%;
}


/* Input control styles */

input {
	display: block;
	float: left;
	font-size: 1em;
	margin: 7px 0px;
	width: 50%;
	font-variant: small-caps;
	font-family: "Times New Roman", Georgia, Serif;
	font-size: 1.1em;
}

#printOrCanvas input {
	display: inline;
	float: none;
	width: 25px;
	margin-left: 45px;
}



