@charset "utf-8";
body {
	font: 80%  Arial, Helvetica, sans-serif;
	background: #CCCCCC;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0px;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 20px auto; /* the auto margins (in conjunction with a width) center the page */
	border: 2px solid #586D8C;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	background: #fff;
	padding: 30px 20px 0;
	text-align:center;
}
#header h1 {
	margin: 0;
	padding: 10px 0; 
	color:#586D8C;
	font-size:120%;
}
#mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	text-align:center;
}
#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	text-align:center;
}
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
#container #header p {
	font-size: 150%;
	font-weight: bold;
	color: #FFF;
	background: #586D8C;
	text-align: center;
	margin:10px 40px;
	padding: 10px 0px;
}
#container #mainContent h1 {
	font-size: 150%;
	font-weight: bold;
	color: #586D8C;
}
#formholder {
	width:80%;
	margin:0 auto;
	padding:20px 0;
}
.rowid {
	font-size:90%;
	padding:5px;
	font-weight:bold;
	color:#415162;
	text-align:left;
}
.rowitem {
	padding:5px;
	text-align:left;
}
.text {
	padding: 3px;
	border: 1px solid #586D8C;
	width:99%;
}
input { border:none; }
a {
	font-weight: bold;
	font-size:90%;
	color: #586D8C;
	text-decoration: none;
	padding:0 5px;
}
a:hover {
	color: #FFF;
	background: #586D8C;
}
div .section { 
	border: 1px solid #8496A9;
	text-align:left;
	margin:15px 40px;
}
div .section h2 {
	margin:0;
	padding:5px 10px;
	background-color:#A2AFBD;
	color:#fff;
	font-size:90%;
}
div .section p { margin:20px; }
