@charset "utf-8";
/* CSS Document */

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background-image: url(images/wood138.jpg);
	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: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #8B8878;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 3px solid #600000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #header {
	background-image: url(images/jungsliceslayout_03.gif);
	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. */
	background-repeat: no-repeat;
} 
.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 */
}
#navcontainer {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* 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: #600; /* the background color will be displayed for the length of the content in the column, but no further */
	border: 5px solid #e3cf57;
	padding: 15px 20px 15px 20px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	font-style: normal;
	color: #e3cf57;
}
#navcontainer ul {
margin-left: 0;
padding-left: 0;
list-style-type: none;
font-family: Arial, Helvetica, sans-serif;
}
#navcontainer a {
display: block;
margin-left: 3px;
margin-top: 3px;
padding: 12px;
width: 125px;
background-color: #8B8878;
border-bottom: 1px solid #eee;
}
#navcontainer a:link, #navlist a:visited {
color: #000;
text-decoration: none;
}
#navcontainer a:hover {
background-color: #e3cf57;
color: #600;
}
.twoColFixLtHdr #mainContent { 
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #600000;
	background-color: #e3cf57;
	border-top: 3px solid #600000;
	border-left: 3px solid #600000;
	border-bottom: 3px solid #600000;
	margin: 0 0 0 210px; /* 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 */
} 
.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;
}
.fltlftphoto {
	float: left;
	border: 3px solid #600000;
}
.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;
}
.style2 {
	font-size: 80%;
}
.figure img {
	float:inherit;
	border: 1px solid #666;
	padding: 2px;
}
div.figure {
	background-color: #8B8878;
	margin: auto;
}
.figure p {
	font: 60% Verdana, Arial, Helvetica, sans-serif;
	color: #000;
	text-align: left;
	background-color: #8b8878;
	border: 1px dashed #666;
	padding: 3px;
}
.gallerycontainer{
position: relative;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}
.thumbnail img{
border: 1px solid white;
margin: 10px 10px 10px 10px;
}
.thumbnail:hover{
background-color: transparent;
}
.thumbnail:hover img{
border: 1px solid blue;
}
.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: lightyellow;
padding: 5px;
left: -1000px;
border: 1px dashed gray;
visibility: hidden;
color: black;
text-decoration: none;
}
.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}
.thumbnail:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: 0;
left: 80px; /*position where enlarged image should offset horizontally */
z-index: 50;
}
a:link {
COLOR: #600000;
}
a:visited {
COLOR: #600000;
}
a:hover {
COLOR: #FFFFFF;
}
a:active {
COLOR: #600000;
}
