/* HORIZONTAL FREESTYLE MENU LAYOUT */

/* All <ul> tags in the menu including the first level */

.menulist {
	position: relative;
}

.menulist, .menulist  ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	z-index: 100;
}

/* All menu items (<li> tags). 'float: left' lines them up horizontally, and they are positioned relatively to correctly offset submenus. */
.menulist li {
	float: left;
	position: relative;
	line-height: 1.4em;
}

/* Links inside the menu */
.menulist a, .menulist a:visited {
	display: block;
 	color: rgb(251,252,245);
	padding: 2px 18px;
	font-size: 10px;
	text-transform: uppercase;
	text-decoration: none;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted, .menulist a:focus {
	background-color: rgb(186,166,80);
	color: rgb(251,252,245);
	text-decoration:none;
}

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a {
	float: left;
}

/* \*/
.menulist a {
	float: none;
}
/* */

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
	display:none;
	position: absolute;
	top: 1.8em; /* I'm using ems rather than px to allow people to zoom their font */
	left: 0px;
	width: 175px;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
	float: none;
	margin: 0;
	padding: 3px;
	border: 1px solid rgb(84,70,50);
	background-color: rgb(251,252,245);
	margin-bottom: -1px;
}

.menulist ul a, .menulist ul a:visited {
	float: none;
 	padding: 4px;
	display: block;
	/*width: 100%;*/
	color: rgb(150,119,75);
	text-transform: none;
	text-decoration: none;
}

.menulist ul a:hover {
	color: rgb(251,252,245);
	background-color:  rgb(128,92,50);
	text-decoration: none;
}


/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/

* html .menulist  ul li {
	float: left;
	height: 1%;
}
* html .menulist  ul a {
	height: 1%;
}
/* End Hack */