@charset "UTF-8";

* {
	margin: 0;
	padding: 0;
	border: 0;
}

body  {
	background: #2B3338;
	margin: 20px 0 0 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: #691204;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	line-height: 20px;
}
.twoColFixLtHdr #container {
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	float: none;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding: 0px;
} 
.twoColFixLtHdr #header {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	text-align: right;
	background: #E7B562;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #862600;
	padding-top: 6px;
	padding-right: 15px;
	padding-bottom: 6px;
	padding-left: 0px;
}
#container #mainContent .fltrt {
	margin-top: 15px;
	margin-right: 73px;
	margin-bottom: 25px;
	margin-left: 20px;
}
.twoColFixLtHdr #header a:link, #header a:visited {
	color: #691204;
	text-decoration: none;
}
.twoColFixLtHdr #header a:hover, #header a:active, #header a:focus {
	color:#C00;
}

.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 130px; /* 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: #3d0302; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 10px;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
}
.twoColFixLtHdr #container #sidebar1 p {
	font-size: 12px;
	color: #E7B562;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 30px;
}

.twoColFixLtHdr #sidebar1 a:link, #sidebar1 a:visited {
	color: #E7B562;
	font-weight: bold;
	text-decoration: none;
}  
.twoColFixLtHdr #sidebar1 a:hover, #sidebar1 a:active, #sidebar1 a:focus {  
   color:#C30; 
}


.twoColFixLtHdr #mainContent {
	margin: 0 0 0 200px; /* 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: 15px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-family: Verdana, Geneva, sans-serif;
} 
.twoColFixLtHdr #mainContent p {
	margin-top: 6px;
	margin-right: 0px;
	margin-bottom: 6px;
	margin-left: 0px;
	line-height: 20px;
}
.twoColFixLtHdr #container #mainContent .twoColFixLtHdrH1 {
	margin-top: 18px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.twoColFixLtHdr #container #mainContent .twoColFixLtHdrH1 {
	color: #b93800;
	font-size: 14px;
	font-weight: bold;
}
.twoColFixLtHdr #mainContent h1 img {
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.twoColFixLtHdr #mainContent .twoColFixLtHdrH1 .fltrt {
	margin-top: 0px;
	margin-right: 70px;
	margin-bottom: 0px;
	margin-left: 0px;
}

.twoColFixLtHdr #footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#e8b564;
	margin: 0;
} 
.twoColFixLtHdr #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: 6px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
	font-size: 12px;
}

.twoColFixLtHdr #footer a:link, #footer a:visited {
	color:#691204;
	text-decoration: none;
}
.twoColFixLtHdr #footer a:hover, #footer a:active, #footer a:focus {
	color:#C30;
}


.twoColFixLtHdr #credits {
	margin: 0px;
	background-color:#2B3338;
}

.credits {
	font-size: 9px;
	color: #999;
	text-align: center;
	padding: 6px 0 0 0;
}
.twoColFixLtHdr #credits a:link, #credits a:visited {
	color:#999;
	text-decoration:underline;
}
.twoColFixLtHdr #credits a:hover, #credits a:active, #credits a:focus {
	color:#8A1E04;
}

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

