/*
   IT 270
   Final Project

   Gregory Miller Contact Form Stylesheet
   Author: Gregory Miller
   Date:   1/21/2016

   Filename:        oform.css
   Supporting Files: 

*/
/* Navigation styles */

nav {
	float: left;
	width: 100%;
	margin: 10px 1% 10px 1%;
}

nav li {
			
	display: block;
	width: 11%;
	margin-left: 1%;
	margin-bottom: 5px;
	float: left;
}

nav li a {
	display: block;
	width: 100%;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-family: vivaldi;
	color: black;
	font-size: 1.5em;
	font-weight: bold;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	background-color: 
}

li a:hover {
	background-color: 
}
/* Body style */
body {
	font-family: Garamond, Geneva, sans-serif;
	background-color: navajowhite;
	background-image: url(fleur.jpg);
	filter: alpha(opacity=75);
	background-size: 5%;
	min-width: 900px;
	max-width: 1200px;
		}

/* Field Set Styles */

fieldset {
	background-color: rgba(255, 255, 255, 0.5);
	color: black;
	border: 3px solid black;
	font-weight: bold;
	float: left;
	margin: 10px 0px 10px 2.5%;
	width: 45%;
	}
legend {
	background-color: rgba(255, 255, 255, 0.5); 
	color: black;
	border: 3px solid black;
	padding: 3px 0px;
	text-indent: 5px;
	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: 40px;
	}
	
/* Selection list styles */

select {
	display: block;
	float: left;
	font-size: 0.9em;
	margin: 7px 0px;
	}
	
/* Option button styles */

fieldset.optionGroup {
	border-width: 0px;
	}
fieldset.optionGroup label {
	display: inline;
	float: none;
	margin: 0px 3px 0px 0px;
	width: 30px;
	}
fieldset.optionGroup input {
	display: inline;
	float: none;
	margin: 0px 20px 0px 0px;
	width: 20px;
	}

	/* Text area styles */

textarea {
	display: block;
	font-size: 0.9em;
	float: left;
	height: 150px;
	margin: 10px 0px;
	width: 50%;
	}
	
	/* Checkbox styles */
	
#emailList{
	color: black;
	float: none;
	margin-left: 30%;
	text-align: center;
	width: 40%;
	border: 3px solid black;
	opacity: 0.8;
	filter: alpha(opacity=80);
	background-color: rgba(255, 255, 255, 0.5);
	}
#emailList input {
	display: inline;
	float: none;
	width: 20px;
	}

	
/* Button styles */

form p{
	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: lightgreen url(go.png) bottom right no-rpeat;
	
	-o-background-size: contain;
	-moz-background-size: contain;
	-webkit-background-size: contain;
	background-size: contain;
	}
input:focus:invalid {
	background: darksalmon url(stop.png) bottom right no-repeat;
	
	-o-background-size: contain;
	-moz-background-size: contain;
	-webkit-background-size: contain;
	background-size: contain;
	}
	
/* Footer styles */
footer {
	background-color: 
	color: rgb(55, 25, 30);
	text-align: center;
	margin-top: 10px;
	margin-right: 20%;
	margin-bottom: 15px;
	letter-spacing: 1px;
	font-style: italic;
	font-weight: bold;
	right: 50px;
	position: fixed;
	bottom: 0px;
	min-width: 900px;
	max-width: 1000px;
	
	}
	