/*
	Precision Unmanned Aerial Systems LLC Home Page
   Author: Thomas Dater
   Date:   12/15/15

   Filename:         pc.css
   Supporting Files: dronedelivery.jpg

*/


/* Section styles */

section {
	background: white url(dronedelivery.jpg) top left no-repeat;
	height: 500px;
	text-align: center;
}


}

/* Article styles */
article {
	background-color: #d6dade;
	text-align: center;
}

article h2 {
	font-size: 1.5em;
}

/* Fieldset styles */

fieldset {
	background-color: #d6dade;
	border: none;
	float: left;
	margin: 10px, 0px, 10px, 2.5%;
	width: 100%;
}

legend {
	color: rgb(0, 163, 239);
	width: 100%;
}

/* Label styles */

label {
	clear: left;
	display: block;
	float: left;
	font-size: 0.9em;
	margin: 7px 4% 7px 5px;
	width: 40%;
}

/* Input control styles */

input {
	display: block;
	float: left;
	font-size: 0.9em;
	margin: 7px 0px;
	width: 50%;
}

input#state {
	width: 50px;
}

input#zip {
	width: 60px;
}

/* Selection list styles */

select {
	display: block;
	float: left;
	font-size: 0.9em;
	margin: 7px 0px;
}

/* Text area styles */

textarea {
	display: block;
	font-size: 0.9em;
	float: left;
	height: 150px;
	margin: 10px 0px;
	width: 50%;
}

/* Button styles */

form p {
	background-color: #d6dade;
	text-align: center;
}

input[type="submit"], input[type="reset"] {
	display: inline;
	float: none;
	height: 40px;
	width: 200px;
}

/* Validation styles */

input:focus, select:focus, textarea:focus {
	background-color: rgb(220, 255, 220);
}

input:focus:valid {
	background: rgb(220, 255, 220) 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;
}