@charset "UTF-8";
body  {
	background: #bcb896;
	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;
}
.twoColFixLtHdr #container {
	width: 799px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #878877;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #header {
	background: #878877 url(../images/header1.png) no-repeat;
	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. */
	height: 152px;
	overflow: visible;
	position: relative;
} 
.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 0;
}
.twoColFixLtHdr #header ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	float:left;
	vertical-align: inherit;
	position: absolute;
	right: 0px;
	bottom: 0px;
	width: 778px;
	height: 25px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: .9em;
}
.twoColFixLtHdr #header li {
	float:left;
	vertical-align: bottom;
	font-family: Arial, Helvetica, sans-serif;
	font-size: .9em;
}
.twoColFixLtHdr #header li a {
	display:block;
	padding: .2em .5em;
	text-decoration:none;
	margin-right: .5em;
	color: #CC9;
	vertical-align: bottom;
}
.twoColFixLtHdr #header li a:link {
	color: #CC9;
}
.twoColFixLtHdr #header li a:visited {
	color: #999;
}
.twoColFixLtHdr #header li a:hover {
	color: #FFF;
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 10px 0px 40px;
	height: auto;
	margin-top: 30px;
}
.twoColFixLtHdr #sidebar1 p {
	color: #CC9;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
}
.twoColFixLtHdr #sidebar1 p a:link {
	color: #CC9;
	text-decoration: none;
}
.twoColFixLtHdr #sidebar1 p a:visited {
	color: #333;
	text-decoration: none;
}
.twoColFixLtHdr #sidebar1 p a:hover {
	color: #CCC;
	text-decoration: none;
}
.twoColFixLtHdr #sidebar1 h3 {
	font-family: Arial, Helvetica, sans-serif;
	color: #333;
}
.twoColFixLtHdr #sidebar1 h4 {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #333;
}
.twoColFixLtHdr #mainContent {
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.85em;
	line-height: 1.25em;
	color: #1e1e1c;
	margin-top: 30px;
	margin-right: 20px;
	margin-left: 250px;
} 
.twoColFixLtHdr #mainContent h1 {
	font-size: 2em;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-weight: lighter;
	color: #CC9;
}
.twoColFixLtHdr #mainContent p a:link {
	color: #CC9;
	text-decoration: none;
}
.twoColFixLtHdr #mainContent p a:visited {
	color: #CCC;
	text-decoration: none;
}
.twoColFixLtHdr #mainContent p a:hover {
	color: #CCC;
	text-decoration: none;
}
.text1 {
	font-size: 0.7em;
}
.twoColFixLtHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#333; 
} 
.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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.75em;
	line-height: 1.25em;
	color: #CC9;
	text-decoration: none;
	text-align: center;
}
.twoColFixLtHdr #footer p a:link {
	color: #CC9;
}
.twoColFixLtHdr #footer p a:visited {
	color: #999;
	text-decoration: none;
}
.twoColFixLtHdr #footer p a:hover {
	color: #CCC;
}

.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;
}
.bold {
	font-weight: bold;
}
.sold {
	font-size: 1.5em;
	color: #F00;
}
