@charset "UTF-8";
body {
	margin: 10px; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	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 */
	background-color: #669900;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 80%;
	color: #333333;
	text-decoration: none;
}
.intro {
	font-size: 0.95em;
	line-height: 1.3em;
}
.boldtext {
	font-weight: bold;
	color: #000000;
}

#container {
	width: 640px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #660000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFCDD;
	background-image: url(content_bg.jpg);
}
#header {
	padding: 0px;
	margin: 0px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #600000;
}
#header h1 {
	margin: 0px; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	height: 75px;

}
#mainContent {
	padding: 0 60px;
}
#footer {
	background:#DDDDDD;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #660000;
	height: 75px;
}
fieldset {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 80%;
	background-color: #DAE4C0;
	margin: 0px 10px 10px 5px;
	border: 1px solid #003300;
	color: #990000;
}
legend {
	font-weight: normal;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #333333;
	text-decoration: none;
	background-color: #BFD0CE;
}
label {
	font-size: 12px;
}

