@charset "UTF-8";
body  {
	font: 80% Arial, sans-serif;
	background: #7c0a14 url("images/redgrade.gif") repeat-x; 
	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: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #fff;
}
p {
	font: Arial, sans-serif;
	font-size:13px;
}
.links {
	color: #fff;
	text-decoration: none;
	font-weight: bold;
}
.links:hover {
	color: #573B1C;
}
.links2 {
	color: #7c0a14;
	text-decoration: none;
	font-weight: bold;
}
.links2:hover {
	color: #573B1C;
}
.toh #container { 
	position:relative;
	width: 850px;  
	background: #c39969;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.toh #header { 
	display:block;
	background-image: url("images/oh_header.jpg");
	height: 229px; 
	padding: 0 0 0 0;  /* 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. */
} 
.toh #header a { 
	display:block;
	background-image: url("images/oh_header.jpg");
	height: 229px; 
	padding: 0 0 0 0; 
}
.toh #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 */
}
.toh #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 190px; /* 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 */
	padding: 0px 10px 10px 20px;
	margin: 0px 0 20px 0px;
	background-image: url("images/scrolls.jpg");
	background-repeat: no-repeat;
	border-right: 1px solid #573B1C;
}
.toh #mainContent { 
	margin: 0 0 0 250px; /* 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: 20px 25px 15px 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.toh #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	clear:both; 
} 
.toh #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 */
	text-align: right;
}
.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;
}
.emph {
	color:#ffffff;
	font:Verdana;
	border-bottom:1px dashed #fff;
	font-size: 10px;
	display: block;
	padding-top: 10px;
	padding-bottom: 5px;
	font-weight: bold;
}
ul#nav {
	position:absolute;
	top:183px;    /* set the exact position of the navigation */
	left:-8px;      /* set the exact position of the navigation */
	width:601px;
	height:33px;
	}
ul#nav li {
	padding:0;
	margin:0;
	float:left;
	text-indent:-9999px;	
	list-style-type:none;
	}
ul#nav li a {
	border:0;
	display:block;
	text-decoration:none;
	background:transparent url(images/oh_menu.jpg) no-repeat;
	}
li#history a {
	width:119px;
	height:33px;
	 }
li#menus a {
	width:121px;
	height:33px;
	 }
li#events a {
	width:121px;
	height:33px;
	 }	 
li#location a {
	width:121px;
	height:33px;
	 }
li#village a {
	width:119px;
	height:33px;
	 }
li#history a:link, li#history a:visited {
	background-position:0px 0px;
	 }	 	 	 	 	 
li#history a:hover, li#history a:focus {
	background-position:0px -34px;
	 }
li#menus a:link, li#menus a:visited {	
	background-position:-119px 0px;
	}
li#menus a:hover, li#menus a:focus {	
	background-position:-119px -34px;
	}
li#events a:link, li#events a:visited {	
	background-position: -240px 0px;
	}
li#events a:hover, li#events a:focus {	
	background-position: -240px -34px;
	}
li#location a:link, li#location a:visited {	
	background-position: -361px 0px;
	}
li#location a:hover, li#location a:focus {	
	background-position: -361px -34px;
	}
li#village a:link, li#village a:visited {	
	background-position: -482px 0px;
	}
li#village a:hover, li#village a:focus {	
	background-position: -482px -34px;
	}

/* Main navigation "active tabs"
------------------------------------------------------------------*/
body#history-page ul#nav li#history a {
	background-position:0px -68px;
	}
body#menus-page ul#nav li#menus a {
	background-position:-119px -68px;
	}
body#events-page ul#nav li#events a {
	background-position:-240px -68px;
	}
body#location-page ul#nav li#location a {
	background-position:-361px -68px;
	}
body#village-page ul#nav li#village a {
	background-position:-482px -68px;
	}
