/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul {
	margin: 0;
	padding:0;
	width:595px;
	line-height:40px;
	list-style: none;
	font-size:14px;
	font-weight:bold;
	text-transform:uppercase;
	
 
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
	display: none;
	position: absolute;
	top: 1.7em; margin-top: 15px; /* I'm using ems and px to allow people to zoom their font */
	left: 0px;
	width: 200px;
	background:url(../images/menuBg.png) no-repeat bottom;
	padding-bottom:8px;
}

/* 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;
	background-image:none;
}
.menulist ul li a{
	background-image:none;
	border-top:1px solid #e5e5e5;	
	padding:0 10px 0 10px;
	text-decoration:none
	
}
.menulist ul li a:hover{
	background-image:none;
	padding:0 10px 0 10px;	
	text-decoration:none;
	border-left:4px solid #9DCA58;
	background:url(../images/bg3.png) repeat-x;
	
}

.menulist ul>li:last-child {
	margin-bottom: 1px; /* Mozilla fix */
}

/* Links inside the menu */
.menulist a {
	display: block;
	padding:1px 20px 0 20px;
	text-decoration: none;
	color:#6a6a6a;
	border-right:1px solid #d3d3d3;
	border-bottom:1px solid #d3d3d3;
	line-height:37px;

 }

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
	color:#6a6a6a;
	text-decoration:underline;
	background:url(../images/bg3.png) repeat-x;
}
.menulist a.highlighted {
	color:#6a6a6a;
	text-decoration:underline;
	background:url(../images/bg3.png) repeat-x;
}
.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 */