/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul {
	margin: 0;
	line-height:31px;
	list-style: none;
	font-size:12px;
	font-weight:bold;
 
}

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

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
	top: -1px; margin-top: 0;
	left: 148px;
}

/*
 All menu items (<li> tags). 'float: left' lines them up horizontally, and they are
 positioned relatively to correctly offset submenus. Also, they have overlapping borders.
*/
.menulist li {
	float: left;
	display: block;
	position: relative;
	margin-right: -1px;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
	float: none;
	margin: 0;
	margin-bottom: -1px;
	background-image:none;
	line-height:16px;
	font-size:11px;
}
.menulist ul li a{
	background-image:none;
	background-color:#F47823;
	border:1px solid #7D3C00;
	padding:3px 10px 3px 10px;
	text-decoration:none
	
}
.menulist ul li a:hover{
	background-image:none;
	background-color:#2C2E2E;
	border:1px solid #5C5C5C;
	padding:3px 10px 3px 10px;	
	text-decoration:none	
}

.menulist ul>li:last-child {
	margin-bottom: 1px; /* Mozilla fix */
}

/* Links inside the menu */
.menulist a {
	color:#fff;
	padding:0 20px 0 20px;
	border-right:solid 1px #d36027;
	border-left:solid 1px #fcb669;
	display: block;
	text-decoration: none;
 }

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
	color:#fff;
	text-decoration:underline;
}
.menulist a.highlighted {
	color:#fff;
	text-decoration:underline;
}
.menulist a .subind {
	display: none;
}
.menulist ul a .subind {
	display: block;
	float: right;
}
.menulist a {
	float: left;
}
.menulist ul a {
	float: none;
}
.menulist a {
	float: none;
}

*:first-child+html .menulist ul li {
	float: left;
	width: 100%;
}

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