
nav{
	display: table-cell;
	vertical-align:middle;
	font-size: 16px;	
}
nav ul{
	margin: 0px;
	padding: 0px;
	float:right;
}
/* Main Menu */
nav ul li{
	display:inline-block;
	cursor:pointer;
	outline:none;
	list-style-type: none;
}
nav ul li > a{
	text-transform: capitalize;
	display:block;	
	padding: 10px;
	color: #231e1f;
	font-weight: bold;
}

nav ul li:hover > a,
nav ul li:focus > a{
	opacity:1;
	color: #a68e73;
}

/* Sub Menu */
nav ul li .submenu{
	position: absolute;
	background-color:rgba(166, 142, 115, 1);
	visibility:hidden;
	overflow:hidden;
	opacity:0;
	z-index: 99999;
	text-align:left;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #a68e73;
	padding: 10px;
	box-shadow:0px 0px 5px #333;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #A68E73;	
	max-width:365px;
	box-sizing:border-box;
}

/*on rollover */
nav ul li:hover .submenu,
nav ul li:focus .submenu{
	visibility:visible;
	opacity:1;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	transition: all 0.2s ease;
}



nav ul li .submenu > a{
	display: inline-block; /*change to inline-block for multi column*/
	color: #FFF;
	width:150px;
	font-weight: lighter;
	padding: 5px 10px;
	border-radius:5px;
}

nav ul li .submenu a:hover{
	background-color: #231e1f;
	opacity:1;
}
nav ul li .submenu > a img{
	display:inline-block;
	vertical-align:middle;
	margin-right:7px;
	border-radius:360px;
	width:20px;
	height:20px;
	}
	
#toggle, #toggle + label{
	display:none;
	cursor:pointer;
}
#toggle + label {
}

@media only screen and (max-width: 620px) {
#toggle + label{
	display:table-cell;
	text-align:right;
	display:block;
}

nav{
	position: fixed;
	top: 0px;
	left: -1800px;
	z-index: 9999;
	background-color: #231e1f;
	opacity:1;
	width:auto;
	height:100vh;
	margin-bottom:200px;
	overflow-y:scroll;
	box-shadow:0px 0px 5px #333;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	transition: all 0.2s ease;	
	padding-top:40px;
}
nav ul li > a{
	padding:7px 20px;
	color:#fff;

}
#toggle:checked ~ nav {
	left: 0px;

}
nav ul{
	float:left;
	padding-bottom:100px;
}
/* Main Menu */
nav ul li{
	display:block;
}
nav ul li .submenu{
	position: static;
	opacity:1;
	width:200px;
	visibility:visible;
	overflow:auto;
}
nav ul li .submenu > a{
	display: block; /*change to inline-block for multi column*/
	width:auto;
}
}

