@charset "utf-8";
body  {
	font: 1em Arial, Helvetica, sans-serif;
	background: #fff;
	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: 934px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background:url(../images/bg_container-blue.gif) repeat-y;
	margin: 0 auto; /* 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. */
} 
.twoColFixLtHdr #header { 
	background: #fff;
	padding: 3px 0px 0 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. */
	height:82px;
} 
.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; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixLtHdr #header .logo {
	float: left;
}
.twoColFixLtHdr #header .arbortitle {
	float: right;
	margin-top:5px;
	}
.twoColFixLtHdr #header .motto {
	font: 20px "Times New Roman", Times, Georgia, serif;
	font-style: italic;
	font-weight: 800;
	letter-spacing:1px;
	color: rgb(120,119,62);
	position: relative;
	background-color: transparent;
	margin-right: 5px;
	text-align: right;
	float: right;
	padding-bottom:10px;
	}
.twoColFixLtHdr #header_nav {
	padding:0 0 0 0;
	background-color:rgb(33,70,36); /*green*/
	height:35px;
	
	}
	

.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 163px; /* 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:url(../images/bg_sidebar1-blue.gif) no-repeat; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
	font-size:80%;
}
.bold{
	font-weight:bold;
}
.boldgreen {
	font-weight:bold;
	color:rgb(33,70,36); /*green*/
}

table.basic_lines {
	width:100%;
 	border-collapse:collapse;
	margin:0 0 20px 0; /* border-bottom TEMP for this layout */
	border-top:3px solid #ccc;
	}
table.basic_lines caption {
	margin-bottom:6px;
	font-weight:bold;
	text-align:left;

	}	
table.basic_lines th {
		border-bottom:0px solid rgb(33,70,36); /*green*/
font-variant:small-caps;
vertical-align:top;
color:rgb(33,70,36); /*green*/
	}	
table.basic_lines td {
	border-bottom:1px solid #ccc;
	width:50%;
	}	
table.basic_lines td, table.basic_lines th {
	padding:5px 6px;
	}
table.basic_lines3col {
	width:100%;
 	border-collapse:collapse;
	margin:0 0 20px 0; /* border-bottom TEMP for this layout */
	border-top:3px solid #ccc;
	}
table.basic_lines3col caption {
	margin-bottom:6px;
	font-weight:bold;
	text-align:left;

	}	
table.basic_lines3col th {
	border-bottom:0px solid rgb(33,70,36); /*green*/
font-variant:small-caps;
vertical-align:top;
color:rgb(33,70,36); /*green*/
	}	
table.basic_lines3col td {
	border-bottom:1px solid #ccc;
	width:auto;
	}	
table.basic_lines3col td, table.basic_lines th {
	padding:5px 6px;
	}	

.twoColFixLtHdr #mainContent { 
	margin: 0 0 0 213px; /* 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: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.fullbody {
	margin-left:-40px;
}

.twoColFixLtHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:rgb(33,70,36); /*green*/
	font: 80% Arial, Helvetica, sans-serif;
	font-weight:500;
	color:#fff;
	
} 
.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 */
}
.twoColFixLtHdr #footer ul{
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	text-align: center;
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue 
	*/
}
.twoColFixLtHdr #footer ul li{
	display:inline;
	margin:0 15px 0 0;
}
.twoColFixLtHdr #footer a {
 color:#fff;                     		
 text-decoration:none;          		
 }
.twoColFixLtHdr #footer a:hover {
 color:#fff; 
 text-decoration:underline;
 }
.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;
}
.left_sidebar ul {
	list-style-type:none;
	list-style-position:outside;
	padding-left:0;
	margin-left:0;
	padding-top:0;
	padding-bottom:0;
}
.left_sidebar ul li {
	padding-bottom:5px;
}
.italic {
	font-style:italic;
	}
.caption {
	text-align:right;
	font-size: 80%;
	font-style:italic;
}
.underline {
	border-bottom: 1px solid #e3e3e3;
	display:inline;
}
.photoleft {
	padding:.5em 1em .5em 0;
	float:left;
}
.photoright {
	padding:.5em 0 .5em 1em;
	float:right;
}
.quote {
	font: 1.25em "Times New Roman", Times, Georgia, serif;
	font-style: italic;
	font-weight: 800;
	letter-spacing:0.75px;
	line-height:1.3em;
	color: rgb(33,70,36); /*green*/
	padding-top:15px;
}
#reportlist {
	list-style-type:none;
}
#reportlist li {
	float:left;
	margin-right:6px;
	margin-bottom:10px;
	width:300px;
	height:360px;
	border:0px solid #e3e3e3;
	padding:5px;
}
#reportlist img {
	display:block;
	border:0;
}
#reportlist p {
	font-size:80%;
}
#photo_description {
	font-face:"Times New Roman", Times, serif;
	font-size:80%;
	font-weight:700;
	font-variant:small-caps;
	color: rgb(33,70,36); /*green*/
	background-color:#eee;
	display:block;
	text-align:right;
	position:relative;
	margin-bottom:0;
	display:none;
}
#breadcrumb {
	float:right;
	font-size:80%;
	font-variant:small-caps;
	color:rgb(33,70,36); /*green*/
}
#breadcrumb img {
	border:0;
	margin:0;
	padding:0;
}
#photo_gallery {
	text-align:center;
}
#photo_gallery img {
	padding-bottom:5px;
	padding-right:5px;
}
.sitemap_alert {
	background-color:#FF0;
	color:#000;
}