@charset "UTF-8";body  {	font: 100% "Times New Roman", Times, serif;	background: #0D2B19;	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;}.thrColAbsHdr #container {	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */	width: 950px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */	background: #0D2B19;	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */	border: 1px solid #DDBD7E;	text-align: left; /* this overrides the text-align: center on the body element. */} /* Tips for absolutely positioned sidebars with header and footer:1. Absolutely positioned (AP) elements must be given a top and side value, either right or left. (As a default, if no top value is given, the AP element will begin directly after the last element in the source order of the page. This means, if the sidebars are first element in the #container in the document's source order, they will appear at the top of the #container even without being given a top value. However, if they are moved later in the source order for any reason, they'll need a top value to appear where you desire.2. Absolutely positioned (AP) elements are taken out of the flow of the document. This means the elements around them don't know they exist and don't account for them when taking up their proper space on the page. Thus, an AP div should only be used as a side column if you are sure the middle #mainContent div will always contain the most content. If either sidebar were to contain more content, that sidebar would run over the bottom of the parent div, and in this case the footer as well, and the sidebar would not appear to be contained.3. If the above mentioned requirements are met, absolutely positioned sidebars can be an easy way to control the source order of the document.4. If the source order is changed, the top value should be equal to the height of the header since this will cause the columns to visually meet the header.*/.thrColAbsHdr #header {	height: 120px;	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. */} .thrColAbsHdr #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;	height: 100px;}.thrColAbsHdr #sidebar1 {	position: absolute;	top: 115px;	left: 0;	width: 170px; /* the background color will be displayed for the length of the content in the column, but no further */	padding: 5px 10px 15px 10px; /* padding keeps the content of the div away from the edges */}.thrColAbsHdr #sidebar2 {	position: absolute;	top: 115px;	right: 0;	width: 160px; /* the background color will be displayed for the length of the content in the column, but no further */	padding: 5px 10px 15px 20px; /* padding keeps the content of the div away from the edges */	color: #DDBD7E;}.thrColAbsHdr #mainContent {	margin: 0 200px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. */	padding: 0 10px;	border: 10px solid #DDBD7E;	color: #DDBD7E;	top: 120px;}.thrColAbsHdr #footer {	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */	background:#DDBD7E;} .thrColAbsHdr #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 */	font-size: 12px;	text-align: center;	font-style: italic;}.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;}.caption {	font-family: "Times New Roman", Times, serif;	font-style: italic;	color: #DDBD7E;	border-bottom: 1px solid #DDBD7E;}