@charset "utf-8";
/* CSS Document */
body  {
	font: 95% Arial, Verdana, Helvetica, sans-serif;
	background: #653808;
	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;
}
.twoColFixLtHdr #container { 
	width: 936px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 5px solid #FFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #header { 
	background:url(../images/layout/bg_top.jpg) no-repeat 0 0 #CDCDCD;
	height:130px;
	margin-bottom:5px;
	padding:10px 25px 0px;
	  /* 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. */
} 
.twoColFixLtHdr #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; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color:#FDFDFD;
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* 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: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */

}
.twoColFixLtHdr #sidebar2 {float:right;width:170px; padding-left:1px; min-height:120px;}
.twoColFixLtHdr #mainContent { 
	margin: 0 0 0 5px;
	float: left;
	width: 731px;
	background-color:#E8DBCD;
} 
.twoColFixLtHdr #mainContent.extended {width:558px; } 
.twoColFixLtHdr #mainContent{}
.twoColFixLtHdr #footer {
	margin-top:5px;
	padding: 0 10px 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	text-align:center;
	font-size:8pt;
	padding:10px 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 */
}
.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;
}
#title a{display:block; font-family:"Trajan Pro"; height:30px; letter-spacing:0; text-decoration:none; outline:none 0px;}
h1#title {padding-left:0px !important;}
#tagline {border-top:1px solid #FFFFFF; float:left; font-size:10px; padding:0 3px; text-decoration:none;}
#tagline a, #tagline, #title a  { text-decoration:none; color:#FFFFFF;}
#wrapper {overflow:hidden; background:#f8f4e6 url(../images/layout/side-separator.gif) repeat-y 100% 10px;}
