@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	/*background-image:url(../Gallery/Oak.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;
	padding-top: 5px;
	padding-bottom:10px;
	padding-left:5px;
	text-align: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	background-color:#330000;
}
.container {
	width: 780px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
    border: thin solid #663300;
	text-align: left; /* this overrides the text-align: center on the body element. */
	color:#FFFFcc;
	background-color:#330000;
	/*border-color: #936C87;*/
	vertical-align:top;

}
a:link {
	color:#ffcc66;
	font-weight:bold;
	font-size:12px;
	text-decoration:none;	
} /* links on the site have underlines removed */
a:visited {
	color:#ffcc66;
	text-decoration:none;
	font-size:12px;
	font-weight:bold;
} /* they stay black insted of the normal blue/purple colors */
a:active {
	color:#ffcc66;
	text-decoration:none;
	font-size:12px;
	font-weight:bold;
}
a:hover {
	color:#ffffff;
	text-decoration:none;
	font-size:12px;
	font-weight:bold;
}
.main {
	font-family:  Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	height: auto;
	width: 580px;
	padding-left:10px;
}
.menu {
    width: 160px;
	border-right:1px solid #663300;
	height:auto;
}
.footer {
	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-size:x-small;
	border-top:1px solid #663300;
}
.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 */
}
#links ul {   /* controls the look and feel of the main menu on the left of the page */
	list-style-type: none;
	text-decoration: none;
	width: 130px;
	font-weight:normal;
	background-color:#FF9900;
}
#links li {   /* controls the look and feel of the main menu on the left of the page */
	/*	border: 1px dotted #999; */
	margin-bottom: 6px;
	margin-top: 6px;
	list-style-type: none;
	font-weight:normal;
	background-color:##FF9900;
}
#links li a {  /* controls the look and feel of the main menu on the left of the page */
	color:#ffcc66;
	display: block;
	padding-top: 7px;
	padding-bottom:7px;
	text-decoration: none;
	list-style-type: none;
	font-weight:normal;
	background-color:##FF9900;
}
* html #links li a {  /* make hover effect work in IE */
	width: 120px;
}
#links li a:hover {  /* Hover over menu links */
	background:#660000;
	font-weight:normal;
}

