#container_menu{
	left: 5%;
	clear: none;
	margin-top: 4%;
	text-transform: uppercase;
	width: 90%;
	float: none;
	padding-right: 0%;
	margin-right: auto;
	margin-left: auto;
}
#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%;
	margin-bottom: 2%;
	padding-right: 15px;
}

/*Style for menu links*/
.menu_li a {
	display: block;
	min-width: 140px;
	height: 50px;
	text-align: right;
	line-height: 50px;
	color: #FFFFFF;
	text-decoration: none;
	border-bottom: 1px dotted #FFFFFF;
	font-size: 18px;
	;
	padding-right: 10px;
}
.menu_li a:hover {
	background-color: hsla(0,0%,100%,0.17);
}
.menu_li2 {
	display: inline-block;
	float: left;
	margin-right: 1px;
	width: 99.9%;
	margin-bottom: 2%;
	padding-right: 15px;

}

/*Style for menu links*/
.menu_li2 a {
	display: block;
	/*min-width:140px;*/
	height: 50px;
	text-align: left;
	line-height: 50px;
	text-decoration: none;
	font-size: 18px;
	border-bottom: 1px dotted #686868;
	color: #3BA9B0;
	
}
/*Hover state for top level links*/
.menu_li:hover a {
	color: #4E3D1D;

}

/*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: #353131;
	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%;
}
.icon_menu {
	margin-left: 10px;
}

/*Responsive Styles*/

@media screen and (max-width : 1089px){

.icon_menu {
	diplay:none;
}
#menu {
	width: 100%;
	}
#container_menu {
	width: 100%;
	margin-top: 1px;
	
}
/*Make dropdown links appear inline*/
.menu_ul {
		position: static;
		display: none;
		
	}
	/*Create vertical spacing*/
.menu_li {

		
	}
.menu_li ul {
	display: none;
	width: 100%;
}
	/*Make all menu links full width*/
.menu_ul li {
		width: 100%;
	}
.menu_li a {
	width: 100%;
	text-align: center;		
	}
	/*Display 'show menu' link*/
.show-menu {
		display:block;
		line-height: 40px;
		
	}
.menu_li2 a {
	text-align: center;	
}
}
