@charset "utf-8";
body {
	margin: 0; /* 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 */
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: .9em;
	line-height: 1.3em;
	background-color: #000000;
}
#container {
	width: 768px; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-color: #DDE2C3;
}
#header {
	background: #DDDDDD;
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}
#header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#mainContent {
	padding: 0 20px;
	background-color: #DDE2C3;
}
#footer {
	padding: 0 10px;
	background-color: #000000;
}
#nav {
	background-color: #DDE2C3;
	width: 100%;
	height: 25px;
}

#footer p {
	margin: 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	background-color: #000000;
	color: #FFFFFF;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.oneColFixCtrHdr #container #mainContent h2 {
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #996600;
	border-left-width: 5px;
	border-left-style: solid;
	border-left-color: #996600;
	padding-left: 5px;
	padding-bottom: 4px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #996600;
	margin-left: 3px;
}

