#menu ul { 
	padding: 0;
	margin: 0;
	list-style: none;
	height: 34px;
	float: left;
}

#menu li { 
	float: left;
	position: relative;
	width: 127px;
	border-right: 1px solid #fff;
	font-size: 90%;
	z-index:200;
}

#menu li.last {
	border-right: none;
}

#menu li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 30px;
	left: 0;
	z-index:200;
}

#menu li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
		top: auto;
		left: auto;
		z-index:200;
}
		
#menu li a {
	overflow: hidden;
	display: block;
	background-color: #69BE28;
	color: #ffffff;
	width: 127px;
	padding: 8px 0;
	height: 17px;
	text-align: center;
	text-transform: uppercase;
	font-weight: bold;
	text-decoration: none;
	z-index:200;
}

#menu li a:hover {
	color: #69be28;
	background: #fff;	
	z-index:200;
}

#menu .current-cat a, #menu .current-cat-parent a {
	background: #fff;
	color: #69be28;	
	z-index:200;
}

#menu li li {
	min-height: 25px;
	height: auto;	
	width: 125px;
	margin: 0;
	border: 1px solid #69be28;
	z-index:200;
}

#menu li li a {
	text-decoration: none;
	background: #fff;
	color: #69be28;
	min-height: 25px;
	width: 125px;
	height: auto;
	z-index:200;
	}

#menu li li a:hover {
		color: #fff;
		background: #69be28;
		z-index:200;
}
	
#menu li:hover ul, #menu li.over ul { 
		display: block; 
		z-index:200;
}