@charset "utf-8";

/* MENU */
.menuItem ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

.menuItem li { /* all list items */
	float: left;
	position: relative;
	padding:0 5px;
	cursor:pointer;
}

.menuItem li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 1em;
	left: 0;
	width:350px;
}

.menuItem 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;
}

.menuItem li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
}

.menuItem li:hover {
	color:#fff;
}

.menu a,.menu  {
	color:#766746;
}

.menu a:hover  {
	color:#fff;
}

.subMenuItem li {
	padding:10px 10px 0 0;
	font-size:12px;
}

#menuSelected li ul {
	display:block;
}
