body {
	behavior:url(css/csshover.htc);
}
* {margin:0; padding:0;} 

/* the horizontal menu starts here */
div#listmenu {
	width:100%;	 /* draws line on bottom edge of div */
	font-size:0.8em;
	color: #FFFFFF;
	font-weight: bold;
	text-transform: none;
	margin: 0px;
	float: left;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	height: 45px;
	background-image: url(../images/sm_oakbuckskin.gif);
	}
div#listmenu ul {
	margin-top: 0px;
	margin-bottom: 0;
	text-align: center;
	margin-left: 2px;
	height: 36px;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	}
div#listmenu li {
	float:left; /* positioning context for the absolutely positioned drop-down */
	list-style-type:none;	/* removes the bullet off each list item */
	background-color:#016f54;
	margin: 0px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	position: relative;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 2px;
	padding-left: 0px;
	}
.thrColFixHdr #container #listmenu img {
	margin-right: 2px;
	margin-left: 0px;
	border: 1px solid #000000;
}

div#listmenu li:hover {
	background-image: url(../images/sm_oakbuckskin.gif);
	}
div#listmenu a {
	display:block; /*makes rolled list items in drop down highlight link text, and wrapped lines indent correctly */
	padding:0 6px; /*creates space each side of menu item's text */
	text-decoration:none;	 /* removes the underlining of the link */
	color:#FFFFFF;	/* sets the type color */
	}
div#listmenu a:hover {
	color:#CCCCCC;
	background-image: url(../images/sm_oakbuckskin.gif);
	background-repeat: no-repeat;
	}
/* the horizontal menu ends here */

/* the drop-down starts here */
div#listmenu ul li ul {
	position:absolute; /* positions the drop-down ul in relation to its relatively positioned li parent */
	width:10em;
	background-color: #016f54;
	left: 5px;
	height: 100%;
	padding: 0px;
	margin: 0px;
	top: 25px;
	}
div#listmenu ul li ul li {
	width:100%;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 1px;
	padding-left: 0;
	border: 1px solid #FFFFFF;
	}
div#listmenu ul li ul li:hover {
	background-image: url(../images/sm_oakbuckskin.gif);
	}
div#listmenu ul li ul li:first-child {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	}
/* make the drop-down display as the menu is rolled over */
div#listmenu ul li ul {display:none;} /* conceals the drop-down when menu not hovered */
div#listmenu ul li:hover ul {
	display:block;
	
} /* shows the drop-down when the menu is hovered */

/* pop-out starts here */
body div#listmenu ul li ul li ul  {
	visibility:hidden; /* same effect as display:none in this situation */
	left:10em;
	}
div#listmenu ul li ul li:hover ul {visibility:visible;} /* same effect as display:block in this situation */
/* THE HACK ZONE - */
/* hack for IE (all flavors) so the menu has a vertical line on the left */
* html div#listmenu ul {
	float:left; /* makes the ul wrap the li's */
	border-left:1px solid #000; /* adds the rightmost menu vertical line to the ul */
	margin-left:15px; /* IE doubles the given value above - why? */	
	}

/* add a top line to drops and pops in IE browsers - can't read :first-child */
* html  div#listmenu ul li ul {
	border-top-width: 1px;
	border-left-width: 0px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	}
