/*
general top nav
*/

/* =========== NAVIGATION ========== */

/* the horizontal menu starts here */
div#listmenu * {margin:0; padding:0; border:0;}

div#listmenu {
width: 100%;
float:left; /*makes the div enclose the list */
clear:both;
font-size:1em;	/* SET FONT-SIZE HERE */
}

div#listmenu ul {margin:0 0 0 120px;/* indents ul from edge of container */
	}

div#listmenu li {
	float:left;	/* causes the list to align horizontally instead of stack */
	position:relative; /* positioning context for the absolutely positioned drop-down */
	list-style-type:none;	/* removes the bullet off each list item */
	font-weight: bold;
	height: 30px;
	line-height:22px;
	}

div#listmenu li:hover { 
	background-color:#8a5239; /*sets the background of the menu items */
	}
div#listmenu a {
	display:block;
	padding: 4px 13px; /*creates space each side of menu item's text */
	text-decoration:none;	 /* removes the underlining of the link */
	color:#d9dfed;	/* sets the type color */
	}
div#listmenu a:hover {
	color:#aebee2;
	background-color:#8a5239;
	}
/* the menu ends here */

/* the drop-down starts here */
div#listmenu ul li ul {
	background-color:#8a5239;
	margin:0; 
	z-index:10; /* puts drop-down on top of div - Safari needs this as menu is 1px higher */
	position:absolute; /* positions the drop-down ul in relation to its relatively positioned li parent */
	width:14em; /*sets the width of the menu - in combo with the li's 100% width, makes the menu stack*/
	}
div#listmenu ul li ul li {
	padding:0;
	width:100%; /* makes the list items fill the list container (ul) */
	font-weight: normal;
	line-height:1.4em;
	height:auto;
	}
div#listmenu ul li ul li a {padding:2px 4px 2px 20px;}

div#listmenu ul li ul li a:hover {background-color:#5d250c;} /*test*/

/* 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 */

/* the drop-down ends here */
/* END OF LIST-BASED MENU */


