/*
   New Perspectives on HTML and CSS
   Tutorial 6
   Case Problem 4

   Order Form Style Sheet
   Author: Claudia Lindsay
   Date:   10/05/2015  

   Filename:         oform.css
   Supporting files: go.png, mclogo.png, stop.png

*/

section, nav, article, aside, footer, header, legend, label, input{
   display: block;
}

/*fieldset Styles*/
fieldset {
	background-color: rgb(255, 255, 204);
	border: 1px solid rgb(0, 0, 255);
	margin: 10px auto;
	width: 70%;
}

legend {
	background-color: rgb(0,0,255);
	color: white;
	padding: 8px 8px;
	text-indent: 10px;
	width: 98.8%;
}

label{
	clear: left;
	float: left;
	font-size: 14px;
	margin: 9px;
	width: 10%;
	
}

input {
	float: left;
	font-size: 14px;
	margin: 9px 10px;
	width: 50%;
}