.nav {
/* 	margin-top: 20px; */
	/* 	padding-bottom: 20px; */
	
}

.nav ul {
	list-style: none;
	background-color: white;
	padding: 0;
	margin: 0;
	z-index: +999;
/* 	padding-left: 40px; */
}

.nav li {
	font-size: 18px;
	line-height: 25px;
	text-align: left;
}

.nav a {
	font-family: 'EvelethCleanThin';
	text-decoration: none;
	color: #583A1E;
	display: block;
	padding-left: 15px;
	border-bottom: 1px solid #888;
	transition: .3s background-color;
	font-weight: normal;
}

.nav div {
	font-family: 'EvelethCleanThin';
	text-decoration: none;
	color: #583A1E;
	display: block;
	padding-left: 15px;
	border-bottom: 1px solid #888;
	transition: .3s background-color;
	font-weight: normal;
	cursor: pointer;
}

.nav a:hover {
	/* 	background-color: #9ac155; */
	background-color: #E9E9E9;
}

.nav a.active {
/* 	background-color: #9ac155; */
/* 	color: white; */
	background-color: white;
	/* 	cursor: default; */
}

.nav div:hover {
	/* 	background-color: #9ac155; */
	background-color: #E9E9E9;
}

.nav div.active {
/* 	background-color: #9ac155; */
/* 	color: white; */
	background-color: white;
	/* 	cursor: default; */
}

/* Sub Menus */
.nav li li {
	font-size: .8em;
}

/*******************************************
   Style menu for larger screens

   Using 650px (130px each * 5 items), but ems
   or other values could be used depending on other factors
********************************************/
@media screen and (min-width: 600px) {
	.nav li {
		border-bottom: none;
		height: 40px;
		line-height: 40px;
		font-size: 18px;
		display: inline-block;
		margin-right: -4px;
	}
	.nav a {
		border-bottom: none;
		padding-right: 10px;
	}
	.nav div {
		border-bottom: none;
		padding-right: 10px;
	}
	.nav>ul>li {
		text-align: center;
	}
	.nav>ul>li>a {
		padding-left: 10px;
		padding-right: 10px;
	}

	/* Sub Menus */
	.nav li ul {
		position: absolute;
		display: none;
		width: inherit;
		padding-left: 0px;
/* 		width: 500px; */
	}
	.nav li:hover ul {
		display: block;
	}
	.nav li ul li {
/* 		width: 500px; */
		display: block;
		margin-right: 0px;
	}

	/* Sub menu indicators */
	.sub>a::after {
/* 		content: '\0025B8'; */
		content: '\0025BE';
		margin-left: 3px;
	}
	.sub>a:hover::after {
/* 		margin-left: 30px; */
/* 		content: '\0025BE'; */
	}
	/* Sub menu indicators */
	.sub>div::after {
/* 		content: '\0025B8'; */
		content: '\0025BE';
		margin-left: 3px;
	}
	.sub>div:hover::after {
/* 		margin-left: 30px; */
/* 		content: '\0025BE'; */
	}
}