@charset "UTF-8";

#formContainer {
	color: #333333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	width: 318px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#formContent {
	min-height: 360px;
	height: auto !important;
	height: 360px;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 20;
	padding-left: 20px;
	background-color: #4C81A3;
	margin-top: 40px;
	color: #FFFFFF;
}
#formContent input, #formContent textarea {
	padding: 2px;
	width: 260px;
	font-family: Helvetica, sans-serif;
	margin: 2px 0px 2px 0px;
	border: 2px solid #ccc;
	font-size: 1.1em;
}
#formContent select {
	
	width: 260px;
	font-family: Helvetica, sans-serif;
	margin: 2px 0px 2px 0px;
	border: 2px solid #ccc;
	font-size: 1.2em;
}

#formContent input.submit-button {
	width: 100px;
	
	float: right;
	margin-top: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 10px;
	
}
#formContent textarea {
	height: 90px;
	font-size: 1.1em;
}
#formContent textarea:focus, #formContent input:focus , #formContent select:focus {
	border: 2px solid #444444;
}
label {
	float: left;
	text-align: left;
	margin-bottom: 0px;
	width: 260px;
	padding-top: 3px;
	font-size: 1.1em;
	
}
option {
	height: 16px;
	font-size: 1em;
	
}
