@charset "utf-8";
* {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
}
body {
	background: #333;
	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 */
}
.twoColFixLtHdr #container {
	width: 750px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #e4dcb2 url(images/bgd.jpg) repeat;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 5px;
	border: 1px solid #e4dcb2;
	text-align: left; /* this overrides the text-align: center on the body element. */
	position: relative;
	font: .85em Tahoma, Geneva, sans-serif;
	color: #333;
}
.twoColFixLtHdr #header {
	padding: 0;
	background-image: url(images/rhead.jpg);
	background-repeat: no-repeat;
	margin: 0;
	height: 256px;
}
.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: 30px 0 0 25px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	letter-spacing: 2px;
	font: 36px Verdana, Geneva, sans-serif;
	font-weight:bold;
}
.twoColFixLtHdr #header h4 {
	margin: 0;
	letter-spacing: 2px;
	font: 24px Verdana, Geneva, sans-serif;
	padding: 14px 0 0 25px;
	font-weight:bold;
}
.twoColFixLtHdr #header p {
	text-align:right;
	font-size:16px;
	padding-right: 25px;
	font-weight:bold;
	padding-top: 15px;
}
.twoColFixLtHdr #header p a:link {
	text-decoration:none;
	color: #e4dcb2;
}
.twoColFixLtHdr #header p a:visited {
	text-decoration:none;
	color: #e4dcb2;
}
.twoColFixLtHdr #header p a:hover {
	text-decoration:underline;
	color: #e4dcb2;
}
.twoColFixLtHdr #sidebar1 {
	width: 160px;
	float: left;
	color: #eae8d0;
	background-color: #9c9473;
	margin: 0px;
	padding: 5px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
.twoColFixLtHdr #sidebar1 .quote {
	width: 128px;
	margin: 5px 5px 10px 5px;
	padding: 10px;
	color: #656c4a;
	font-weight: bold;
	text-align:center;
	border: 1px dashed #c78d39;
	background: #e4dcb2;
	font-size: 13px;
}
.twoColFixLtHdr #sidebar1 h3 {
	text-align: center;
	font-size:18px;
	text-decoration:underline;
	margin-top: 20px;
	margin-bottom:4px;
}
.twoColFixLtHdr #sidebar1 ul {
	list-style-type: none;
	margin:0 0 10px 20px;
	padding:0;
	font-size:13px;
	font-weight:bold;
}
.twoColFixLtHdr #sidebar1 li {
	margin-bottom:4px;
}
.twoColFixLtHdr #sidebar1 li a:link {
	text-decoration:none;
	color: #333;
}

.twoColFixLtHdr #sidebar1 li a:visited {
	text-decoration:none;
	color: #333;
}
.twoColFixLtHdr #sidebar1 li a:hover {
	text-decoration:underline;
	color: #333;
}
.twoColFixLtHdr #sidebar1 p {
	margin-left:5px;
	margin-bottom:5px;
	margin-top:15px;
}
.twoColFixLtHdr #sidebar1 .nav_pic {
	border: 1px dashed #c78d39;
	margin-left:5px;
}
.twoColFixLtHdr #mainContent {
	float: right;
	margin: 0;
	padding: 15px;
	width: 550px;
}
.twoColFixLtHdr #mainContent h2 {
	color: #656c4a;
	margin-top: 0px;
	margin-right: 0;
	margin-bottom: 10px;
	margin-left: 0px;
	letter-spacing:2px;
	border-bottom: 1px solid #656c4a;
	font-size: 1.5em;
	font-weight:bold;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 5px;
	padding-left: 10px;
}
.twoColFixLtHdr #mainContent blockquote {
	font-style: italic;
	color: #ac7d39;
	width: 450px;
	padding: 0;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 45px;
}
.twoColFixLtHdr #mainContent p {
	font-size:1em;
	margin: 10px;
}
.twoColFixLtHdr #mainContent a:link {
	text-decoration:none;
	color: #656c4a;
}
.twoColFixLtHdr #mainContent a:visited {
	text-decoration:none;
	color: #656c4a;
}
.twoColFixLtHdr #mainContent a:hover {
	text-decoration:underline;
	color: #656c4a;
}
.twoColFixLtHdr #mainContent li {
	margin-left:22px;
	margin-bottom:4px;
	margin-right: 10px;
}
.twoColFixLtHdr #footer {
	margin: 0;
	padding: 0; /* 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: 5px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color: #fff;
	text-align:center;
	font-size: 12px;
}
.twoColFixLtHdr #footer p a:link {
	text-decoration:none;
	color: #fff;
}

.twoColFixLtHdr #footer p a:visited {
	text-decoration:none;
	color: #fff;
}
.twoColFixLtHdr #footer p a:hover {
	text-decoration:underline;
	color: #fff;
}
.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: 10px;
	padding: 10px;
	border: 1px solid #656c4a;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin: 10px;
	padding: 10px;
	border: 1px solid #656c4a;
}
.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;
}
#righttable {
	float:right;
	text-align:right;
}
#lefttable {
	float:left;
	text-align:right;
}
#bottomtable {
	text-align:right;
}
.date {
	float: left;
	color:#656C4A; 
	font:50px "Times New Roman", Times, serif; 
	line-height:35px; 
	padding-top:2px; 
}
#gallerypic {
	margin-left: 10px;
	text-align:center;
}
#clear {
	clear:both;
}
