/* All <ul> tags in the menu including the first level */
.menulist, 
.menulist ul {
 	margin: 0;
 	padding: 0;
 	width: 136px;
 	list-style: none;
 	background-color: #FAF7DE;
 	height: auto;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul {
 	visibility: hidden;
 	position: absolute;
 	top: -1px;
 	left: 136px;
 	width: 135px;
 	border-top: 1px solid #E19E49;
}

.menulist #place1 {
 	margin: 0;
 	padding: 7px 0;
 	width: 134px;
 	list-style: none;
	font-weight: bold;
	border-width: 0;
	background-color: #FAF7DE;
	border-right: 2px solid #AF210E;
	border-bottom: 1px solid #E19E49;
	height: auto;
}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist li {
	position: relative;
}

.menulist ol {
	list-style: none;
 	position: relative;
	left: 16px;
	padding: 3px 0;
	margin: 0;
 	width: 117px;
	background-color: #FAF7DE;
 	border-top: 0px solid #E19E49;
}

.menulist ol li {
	padding: 3px 0;
	width: 118px;
	font-weight: normal;
}

/* Links inside the menu */
.menulist a {
	background-color: #F4EEBD;
	color: #000;
	padding: 7px 2px 7px 7px;
	display: block;
	line-height: 14px;
	text-decoration: none;
	border-bottom: 1px solid #E19E49;
	border-right: 2px solid #AF210E;
	width: 125px;
}

.menulist ul a {
	border-right: 1px solid #E19E49;
}

.menulist #place1 a {
	display: inline;
	line-height: normal;
	padding: 2px 2px 2px 7px;
	background-color: #FAF7DE;
	border-width: 0;
	width: 114px;
}

.menulist ol li a {
	font-weight: normal;
	border-width: 0;
	padding-right: 0;	
}

.menulist #place {
	font-weight: bold;
	cursor: default;
}

/*
 Lit items: hover/focus = the current item. 'highlighted' = parent items to visible menus.
 Here, active items are given a border, and a padding tweak to 'elevate' the text within.
 Feel free to use background-image:url(file.gif) instead of background-color:#nnn here...
*/
.menulist a:hover, 
.menulist a.highlighted:hover,  
.menulist a.highlighted,
.menulist a.active,
.menulist a.focus {
	color: #333;
	background-color: #FAF7DE;
	text-decoration: none;
}

.menulist ol a:hover, 
.menulist ol a.highlighted, 
.menulist ol a.focus {
	xtext-decoration: underline;
	font-weight: bold;
}

/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
 	float: right;
}

/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist li {
 	float: left;
 	height: 1%;
}
* html .menulist a {
 	height: 1%;
}
/* End Hack */
