#headrow {
	position: fixed;
	top: 0;
	height: 3em;
	padding: 1em 1em 1em 1em;
	margin: 1.5em 0 0 0;
	max-width: 936px;
	width: 90%;
	background-color: #B4C48E;
	border-bottom: 1.5px solid black;
}

#logo {
	z-index: 3;
	position: fixed; 
	float: left;
	top: 12px;
	padding-left: 12px;
	background-color: #B4C48E;
	width: 55px;
	left: 10px;
	display: block;
}

nav {
	z-index: 2;
	top: 0;
	position: fixed; 
	padding: 0px 10px 15px 75px;
	background-color: #B4C48E;
	width: 80%;
}

nav ul {
	padding: 15px 0 0 0;
	margin: 0;
	list-style: none;
	position: relative;
}

nav ul li {
	margin: 0 10px 3px 0;
	display: inline-block;
	opacity; 0.5;
}

/* Hide Dropdowns by Default */
nav ul li ul {
	z-index: 2;
	visibility: hidden;
	position: absolute; 
/*	top: 60px;*/ /* the height of the main nav */
}

nav ul li ul li {
	padding-right: 20px;
	float: none;
	display: list-item;
	position: relative;
	margin-left: 1em;
}

nav a {
	display: block;
	padding: 0 10px; 
	color: #FFF;
	line-height: 24px;
	text-decoration: none;
/*	opacity: 0.8;*/
	background-color: #A0AD82;
	border-radius: 10px 5px;
	border: #D3D3B0 2px solid;
	transition: all 1s 0.6s;
}

nav a:hover {
	padding-right: 20px;
	font-weight: bold;
	font-size: 1.05em;
	opacity: 1;
	transition: all 0.6s 0.4s ease-in-out;
}

/* Display Dropdowns on Hover */
nav ul li:hover > ul {
/*	display: inherit;*/
	visibility: visible;
	transition: all 0.6s 0.4s ease-in-out;
}
