#container_menu{
	width: 74%;
	clear: none;

}
#menu {
	width: 100%;
	}
/*Strip the ul of padding and list styling*/
.menu_ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	/*position: absolute;*/
	
}

/*Create a horizontal list with spacing*/
.menu_li {
	display:inline-block;
	float: left;
	margin-right: 1px;
	width: 26.4%;
}

/*Style for menu links*/
.menu_li a {
	display:block;
	/*min-width:140px;*/
	height: 50px;
	text-align: center;
	line-height: 50px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #fff;
	background: #627559;
	text-decoration: none;
}
.menu_li2 {
	display:inline-block;
	float: left;
	margin-right: 1px;
	width: 19.8%;
}

/*Style for menu links*/
.menu_li2 a {
	display:block;
	/*min-width:140px;*/
	height: 55px;
	text-align: center;
	line-height: 50px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #fff;
	background: #C56826;
	text-decoration: none;
}
/*Hover state for top level links*/
.menu_li:hover a {
	background-color: #578840;
}

/*Style for dropdown links*/
.menu_li:hover ul a {
	background: #f3f3f3;
	color: #2f3036;
	height: 40px;
	line-height: 40px;
}

/*Hover state for dropdown links*/
.menu_li:hover ul a:hover {
	background-color: #666666;
	color: #fff;
}

/*Hide dropdown links until they are needed*/
.menu_li ul {
	display: none;
	width: 99.8%;
	position: relative;
}

/*Make dropdown links vertical*/
.menu_li ul li {
	display: block;
	float: none;
}

/*Prevent text wrapping*/
.menu_li ul li a {
	width: auto;
	min-width: 100px;
	padding: 0 20px;
}

/*Display the dropdown on hover*/
.menu_ul li a:hover + .hidden, .hidden:hover {
	display: block;
	position: relative;
}

/*Style 'show menu' label button and hide it by default*/
.show-menu {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-decoration: none;
	color: #fff;
	background-color: #3F6C2C;
	text-align: center;
	padding: 10px 0;
	display: none;
}

/*Hide checkbox*/
input[type=checkbox]{
    display: none;
    -webkit-appearance: none;
}

/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ #menu{
	display: block;
	width: 100%;
}


/*Responsive Styles*/

@media screen and (max-width : 980px){
#menu {
	width: 100%;
	}
#container_menu {
	clear: both;
	width: 100%;
	
}
/*Make dropdown links appear inline*/
.menu_ul {
		position: static;
		display: none;
	}
	/*Create vertical spacing*/
.menu_li {
		margin-bottom: 1px;
	}
.menu_li ul {
	display: none;
	width: 100%;
}
	/*Make all menu links full width*/
.menu_ul li {
		width: 100%;
	}
.menu_li a {
		width: 100%;
	}
	/*Display 'show menu' link*/
.show-menu {
		display:block;
	}
}
