/* Form Stylesheet */
/* Setting font size and color for form */
form, label, input { 
	font-size : 1em;
	color:#000; 
} 
/* Setting containing box size and positioning to hold form elements. */
fieldset { 
	width : 36em;
	padding : 0.5em 1em;
	margin: 0 auto;
} 
/* Setting label name size and position (name, address, etc.) */
label { 
	position : relative;
	width : 14em;
	display : block;
	margin : .5em 0em;
	padding:0.2em;
} 
/* Setting label box size and positioning */
label input { 
	position : absolute;
	left : 100%;
	top : 0px;
	width : 20em; 
} 
/* Setting box size for drop down menu */
label select { 
	position : absolute;
	left : 100%;
	top : 0px;
	width : 24.5em; 
} 
/* Setting input button position */
input.submit { 
	margin-left : 20em;
	margin-top:1em;
} 
br { 
	display : none; } 