/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul {
 margin: 0;
 padding: 0;
 margin:0 auto;
 font-size:14px;
 color:#fff;
 line-height:30px;
 list-style: none;
 font-weight:bold;
 margin-left:5px;
 margin-right:10px;
 letter-spacing:-1px; 
}

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

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

/*
 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: 2px;
	background:url(../images/nav-left.png) no-repeat left;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
	float: none;
	margin: 0;
	background-image:none;
	line-height:16px;
	font-size:12px;
	font-family:Arial, Helvetica, sans-serif, Calibri;
	font-weight:bold;
	letter-spacing:normal;
}
.menulist ul li a{
	background-image:none;
	font-weight:bold;
	letter-spacing:normal;	
	background-color:#da0700;
	padding:5px 10px 5px 10px;
	text-decoration:none;
	border-top:1px solid #cf0f02;

}
.menulist ul li a:hover{
	background-image:none;
	letter-spacing:normal;	
	font-weight:bold;	
	background-color:#d00000;
	padding:5px 10px 5px 10px;	
	text-decoration:none	
}

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

/* Links inside the menu */
.menulist a {
	padding:0 32px 0 8px;
	background:url(../images/nav-right.png) no-repeat right;
	display: block;
	color: #FFF;
	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;
	background:url(../images/nav-right-over.png) no-repeat right;
	text-decoration:underline;
}
.menulist a.highlighted {
	color: #FFF;
	background:url(../images/nav-right-over.png) no-repeat right;
	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 */