/* based on http://sperling.com/examples/menuh/ I think */
/* TODO: consider http://www.cssplay.co.uk/menus/final_drop.html ? */
/* also see http://htmldog.com/articles/suckerfish/dropdowns/ */

/* container for the menu */
/* for some reason MSIE 6 wants a width of 51em rather than 50em */
#centermenu {
	width: 51em;
	margin-left: auto;
	margin-right: auto;
}

#navmenu {
	width: 100%;
	background-color: #693829;
	color: #f1ebb7;
	margin-bottom: 20px;
	float: left;
}

#navmenu a, #navmenu h2 {
	text-align: center; /* wtm */
/*	border: 1px solid #555;*/
/*	white-space: nowrap;*/
	margin: 0;

	display: block;
	color: #f1ebb7;
	background-color: #341914;
	font-size: 12px;
	padding: 2px 4px; /* make h2 and a have the same padding */
}

#navmenu a:link, #navmenu a:visited, #navmenu a:active	/* menu at rest */
{
	text-decoration:none;
}

#navmenu a:hover	/* menu at mouse-over  */
{
	text-decoration:none;
	background-color: #000000;
	text-decoration: underline;
}	

#navmenu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	float: left;
	/* wtm text-align: center; */
	/* do not specify width; use variable width */
}

#navmenu li {
	position: relative;
	min-height: 1px; 			/* Sophie Dennis contribution for IE7 */
	vertical-align: bottom; /* Sophie Dennis contribution for IE7 */
}

/* put the menu on top of everything else */
#navmenu ul ul {
	position: absolute;
	z-index: 500;
	top: auto;
	display: none;
	padding: .2em;
	/*margin: -1em 0 0 -1em;*/

	background-color: #341914;
	width: 100%;
}

div#navmenu li:hover
{
	cursor: pointer;
	z-index: 100;
}

div#navmenu li:hover ul ul,
div#navmenu li li:hover ul ul
{display:none;}

div#navmenu li:hover ul,
div#navmenu li li:hover ul
{display:block;}

#navmenu h2, #navmenu li {
	border-width: 1px;
	border-style: solid;
	border-color: #ccc #888 #555 #bbb;
}

#navmenu ul ul li {
	padding: 4px 0px;
}

