#container_menu{
	clear: none;
	border-right: 1px solid #f6f6f6;
	border-left: 1px solid #f6f6f6;
	position: absolute;
	z-index: 5;
	margin-top: 0px;
}
#menu {
	width: 100%;
	}
/*Strip the ul of padding and list styling*/
.menu_ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	
}

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

/*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-color: #5E5556;
	text-decoration: none;
}

.menu_li2 {
	display: inline-block;
	float: left;
	margin-right: 1px;
	width: 99.9%;
}

/*Style for menu links*/
.menu_li2 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-color: #888888;
	text-decoration: none;
	
}

.submenu_li2  a {
	background-color: #D2D2D2;
	color: #5E5556;
}

/*Hover state for top level links*/
.menu_li:hover a {
	background-color: #8F9492;
}
.menu_li2:hover a {
	background-color: #8F9492;
}

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

/*Hover state for dropdown links*/
.menu_li:hover ul a:hover {
	background-color: #666666;
	color: #fff;
}
.menu_li2: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;
}
.menu_li2 ul {
	display: none;
	width: 99.8%;
	position: relative;
}

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

/*Prevent text wrapping*/
.menu_li ul li a {
	width: auto;
    min-width: 100px;
    padding: 0 20px;
    background-color: #EFEFEF;
    color: #5E5556;
}

.menu_li2 ul li a {
	width: auto;
    min-width: 100px;
    padding: 0 20px;
    background-color: #EFEFEF;
    color: #5E5556;
}

/*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: #464041;
	text-align: center;
	padding: 10px 0;
	display: none;
	font-variant: normal;
	font-weight: bold;
}

/*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 : 960px){
#menu {
	width: 100%;
	}
#container_menu {
	width: 100%;
	position: relative;
	
}
/*Make dropdown links appear inline*/
.menu_ul {
		position: static;
		display: none;
		
	}
	/*Create vertical spacing*/
.menu_li {
		margin-bottom: 1px;
		
	}
.menu_li2 {
		margin-bottom: 1px;
		
	}

.menu_li ul {
	display: none;
	width: 100%;
}

.menu_li2 ul {
	display: none;
	width: 100%;
}

	/*Make all menu links full width*/
.menu_ul li {
		width: 100%;
	}

.menu_li a {
		width: 100%;
		
	}

.menu_li2 a {
		width: 100%;
		
	}

	/*Display 'show menu' link*/
.show-menu {
		display:block;
		
	}
}
