

/*Strip the ul of padding and list styling*/
nav ul {
	list-style-type:none;
	margin:0;
	padding:0;
	position: absolute;
	z-index: 12;
	background: #fff;
}
ul#menu_top {
	right: 0;
}

/*Create a horizontal list with spacing*/
nav li {
	position: relative;
	display:inline-block;
	float: left;
	margin-right: 1px;
	z-index: 50;
}
nav li span {
	display: block;
}
nav i {
		position: relative;
		display: inline-block;
		margin: 0 auto;
		padding: 0.4em;
	}	


.icon_menubas:after {
  content: "\A0\A0\A0\A0\7c\A0\A0\A0\A0";
}
/*Style for menu links*/
nav li a {
	display:block;
	min-width:163px;
	height: 46px;
	text-align: center;
/*	line-height: 50px; */
	font-family: "MyriadPro-Regular", Helvetica, Arial, sans-serif;
	color: #fff;
	background: #24b7cd;
	text-decoration: none;
	font-weight: bold;
	font-size: 12px;
}
nav#nav_haut li:not(:last-child) {
    margin-right: 25px;
}

/*Hover state for top level links*/
nav li:hover a {
	background: #24b7cd;
	color: #fff;
}

/*Style for dropdown links*/
nav li:hover ul a {
	font-size: 12px;
	color: #107a66;
	background: #fff;
	height: 28px;
	line-height: 28px;
	white-space: nowrap;
}

/*Hover state for dropdown links*/
nav li:hover ul a:hover {
	background: #fff;
	color: #c3b2a4;
}

/*Hide dropdown links until they are needed*/
nav li ul {
	display: none;
	background: #fff url(../imgs/bg_li_top_on.gif) 35px 0 no-repeat;
	padding-top: 25px;
}

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

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

/*Display the dropdown on hover*/
nav ul li a:hover + .hidden, .hidden:hover {
	display: block;
}

/*Style 'show menu' label button and hide it by default*/
.show-menu {
	text-decoration: none;
	color: #fff;
	background: #fff;
	text-align: center;
	display: none;
	width: 50px;
	z-index: 45;
	position: relative;
}

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

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

/* ==================================================================== */

#footer_menu ul {
	text-align: center;
	list-style: none;
	padding: 15px;
}
#footer_menu ul li {
	text-align: center;
	display: inline-block;
}
#footer_menu ul li a {
	color: #fff;
	text-decoration: none;
}

#footer_logo ul {
	text-align: center;
	list-style: none;
	background: #fff;
}
#footer_logo ul li {
	text-align: center;
	display: inline-block;
}
#footer_logo ul li a {
	color: #fff;
	text-decoration: none;
	margin-right: 10px;
	display: block;
}
.menu_desktop {
	display: inline-block;
}
.menu_mobile {
	display: none;
}


/*Responsive Styles*/

@media screen and (max-width : 779px){
	/*Make dropdown links appear inline*/
	nav ul {
		position: static;
		display: none;
	}
	
	ul#menu_top {
		padding-top: 43px;
	}
	nav li {
		margin-bottom: 0px;
		float: none;
		border-bottom: solid 1px #fff;
	}
	/*Make all menu links full width*/
	nav ul li, li a {
		width: 100%;
	}
	nav li a {
		text-align: left;
	/*	line-height: 50px; */
		padding-top: 5px;
		padding-bottom: 5px;
		height: 35px;
		padding-left: 20px;
	}
	nav li:hover a {
		background: #fff;
		color: #24b7cd;
	}
	nav li ul {
		display: none;
		background: #fff;
		padding-top: 25px;
	}
	/*Display 'show menu' link*/
	.show-menu {
		display:block;
		cursor: pointer;
	}
	.div_show_menu {
		text-align: right;
		position: absolute;
		right: 0px;
	}
	.menu_desktop {
		display: none;
	}
	.menu_mobile {
		display: inline-block;
		font-size: 20px;
		line-height: 30px;
	}
	/* Displaying the icons on the left, and the text on the right side using inline-block */
	nav li span, 
	nav li span.icon {
		display: inline-block;
	}
	
	nav li span.icon {
		width: 15%;
	}

	nav li .icon + span {
		font-size: 1em;
	}

	.icon + span {
		position: relative;
		top: -0.2em;
	}
	.icon_menubas:after {
	  content: "\A0\7c\A0";
	}
}