
#menu{
	list-style: none;
	margin: 0;
	padding:0;
	width: 100%;
}

/*CLOSED MENU BAR ON MOBILE*/
/*Style 'show menu' label button and hide it by default*/
.show-menu {
	font-family: "Lucida Sans", sans-serif;
	font-size:16px;
	text-decoration: none;
	color: #fff;
	background: #927c50;
	text-align: left;
	display: none;
}

/*Hide checkbox*/
input[type=checkbox]{
    display: none;
}

/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ #menu{
    display: block;
}


/*Responsive Styles*/

@media screen and (max-width : 760px){
	/*Make dropdown links appear inline*/
	ul {
		position: static;
		display: none;
		width: 100%;
		
	}
	/*Create vertical spacing*/
	li {
		margin-bottom: 1px;
	}
	/*Make all menu links full width*/
	ul li, li a {
		width: 100%;
	}
	/*MOBILE MENU BLOCK*/
	/*Display 'show menu' link*/
	.show-menu {
		display:block;
		padding: 15px;
		margin: 0;
		width: 100%;
	}
}