nav {
	background:#e3e3e3;
	background: linear-gradient(#f5f5f5, #e3e3e3);
}
nav :focus {
	outline:none
}

.menu-level-2 {
	position: absolute;
	top: 30px;
	left: 0;
	width: 200px;
	list-style: none;
	padding: 0;
	margin: 0;
	display: none;
	z-index: 998;
}

.menu-level-2 > li {
	position: relative;
	height: 30px;
	background: #e3e3e3;
}

.menu-level-2 > li:hover {
	background: #ccc;
}

.menu-level-1 {
	list-style: none;
	padding: 0;
	margin: 0;
	z-index: 997;
}

.menu-level-1 > li {
	position: relative;
	float: left;
	height: 30px;
	background: linear-gradient(#f5f5f5, #e3e3e3);
	border-right: 1px solid #ccc;
}

.menu-level-1 > li:hover { 
	background: #ccc; 
}

.menu-level-1 li:hover > ul {
	/* On hover, display the next level's menu */
	display: inline;
}

.menu-level-1 a {
	font-weight: bold;
	font-size: 14px;
	color: #000;
	text-decoration: none;
	padding: 0 10px 0 10px;

	/* Make the link cover the entire list item-container */
	display: block;
	line-height: 30px;
}

.menu-level-1 a:hover {
	color: #000000;
}


#searchMenuIconWrap {
	position: relative;
}

#searchMenuWrap {
	display: none;
	z-index: 999;
}

#searchMenuIcon {
	padding: 0.4em;
}

#searchMenuField {
	position: absolute;
	left: 2.5em;
	top: 0.2em;
	z-index: 999;
}

#cancelMenuSearch {
	position: absolute;
	top: 0.2em;
	left: 26.5em;
	cursor: pointer;
	background: #e3e3e3;
	padding: 0.2em;
	z-index: 999;
}

#searchMenuResults {
	position: absolute;
	top: 1.8em;
	left: 2.5em;
	white-space: nowrap;
	background: #e3e3e3;
	z-index: 999;
}

#searchMenuResults a.highlighted {
	background: #f5f5f5;
}


nav.searchingIn li:not(:first-child) {
	opacity: 0.05;
}