@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 18px;
	color: #2A1B0D;
	background: #F1EDDF;
	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 */

}
a,  a:link {
  color: #2A1B0D;
  font-weight: bold;
  text-decoration: none;
}
a:visited {
  color:#2A1B0D;
  font-weight: bold;
  text-decoration: none;
}
a:hover {
  color: #2A1B0D;
  text-decoration: underline;
}
a:focus {
  color: #2A1B0D;
}
a:active {
  color: #2A1B0D;
}
h1 {
    font-family:"Times New Roman", Times, serif;
	color: #2A1B0D;
	font-size: 18px;
	font-weight: bold;
}
h2 {
    font-family: "Times New Roman", Times, serif;
    color: #2A1B0D;
	font-size: 14px;
	font-weight: bold;
}
h4 {
    font-family: "Times New Roman", Times, serif;
	color: #800000;
	font-weight: bold;
	font-size: 16px;
}
h5 {
    font-family: "Times New Roman", Times, serif;
	color: #545F6E;
	font-weight: bold;
	font-size: 14px;
}
h6 {
    font-family: "Times New Roman", Times, serif;
	color: #545F6E;
	font-weight: bold;
	font-size: 22px;
}
.italic {
    font-style: italic;
}
.oneColFixCtrHdr #container {
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-image:url(../images/bg.jpg);
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border-left: 1px #A6803A solid;
	border-right: 1px #A6803A solid;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #header {
	background: transparent; 
	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 #header h1 {
	margin: 0; /* 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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family: "Times New Roman", Times, serif;
	font-size: 32px;
	font-weight: 100;
}
.oneColFixCtrHdr #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: transparent;
}
.oneColFixCtrHdr #leftMiddle {
	float: left; /* since this element is floated, a width must be given */
	width: 170px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: transparent; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 10px 0px 50px;
}
.oneColFixCtrHdr #rightMiddle {
	margin: 0 0 0 0; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 20px 20px 20px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */

}
.oneColFixCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: transparent;
	font-size: 11px;
}
.oneColFixCtrHdr #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 */
}
.oneColFixCtrHdr #footer a:link {
    color: #2A1B0D;
	text-decoration: none;
}
.oneColFixCtrHdr #footer a:visited {
    color: #2A1B0D;
	text-decoration: none;
}
.oneColFixCtrHdr #footer a:hover {
    color: #2A1B0D;
	text-decoration: underline;
}
.smallItalic {
    font-size: 11px;
	font-style: italic;
