@charset "UTF-8";
/* CSS Document */

a:link {
	color: #5a330c;
	ta
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
	text-decoration: none;
}

a:visited {
	color: #5a330c;
	text-decoration: none;
}

a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
	color: #74AEA4;
}

body {
	background-color:#FFF;
	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: #227171;
	font-family: "Century Gothic";
	font-size: 100%;
}
.oneColFixCtrHdr #container {
	width: 960px; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #74AEA4;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFF;
	background-attachment: scroll;
	padding: 0px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-image: url(images/bodyBackground.JPG);
	background-position: center center;
}
.oneColFixCtrHdr #header {
	height:100px;
	font-size: 14px;
	font-weight:normal;
	color:#5a330c;
	background-color: #FFF;
	background-image: url(images/headerBG.JPG);
	background-repeat: no-repeat;
	padding-right: 6px;
	padding-left: 0px;
	padding-top: 5px;
}
.oneColFixCtrHdr #header a:visited {
	color: #5a330c;
	text-decoration: none;
}
.oneColFixCtrHdr #header a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
	color: #000;
}

.oneColFixCtrHdr #header h1 {
	font-family:"Times New Roman", Times, serif;
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}
.oneColFixCtrHdr h1 {
	font-family:"Times New Roman", Times, serif;
	font-weight:normal;
	font-size:36px;
	font-style: italic;
	text-align: left;
	}
.oneColFixCtrHdr #menubar {
	background: #74aea4;
	height: 37px;
	font-size: 13px;
	font-weight:bold;
	color:#5a330c;
	padding: 0 10px 0 20px;  /* 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. */
}
.oneColFixCtrHdr #mainContent {
	padding: 0 20px;
	text-align: left;
}
.oneColFixCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#74aea4;
	color:#edede1;
}
.oneColFixCtrHdr #footer p {
	text-align: center;
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
	padding-top: 10px;
}

.oneColFixCtrHdr #footer a:link {
	color: #EDEDE1;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}


.oneColFixCtrHdr #footer a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
	color: #6E330C;
}

