/*** adding the class sf-navbar in addition to sf-menu creates an all-horizontal nav-bar menu ***/
.sf-navbar {
	position: relative;
	width:100%;
}
/* provide background colour for submenu strip */
/* you should just set the menu's container bg colour rather than use pseudo-elements */
.sf-navbar:before {
	content: '';
	position: absolute;
	left: 0;
	z-index: -1;
	height: 200%;
	width: 100%;
}
.sf-navbar ul {
	box-shadow: none;
}
.sf-navbar li {
	background: transparent;
	position: static;
}
.sf-navbar > li > a,
.sf-navbar > li > ul > li > a {
	border: none;
}
.sf-navbar > li > a {
	text-transform:uppercase;
	font-size:18px;
}
.sf-navbar > li > ul {
	min-width: 36em; /* set this to whatever suits your design */
	width:100%;
	background: #666765; /* anthracite */
}
.sf-navbar ul li {
	background: #666765; /* anthracite */
	position: relative;
}
.sf-navbar ul ul {
	left: 0;
	top: 100%;
}
.sf-navbar ul ul li {
	width: 100%;
}
.sf-navbar > li > ul > li {
	float: left;
}
.sf-navbar li.active {
	background: #666765; /* anthracite */
}
.sf-navbar li:hover,
.sf-navbar li.sfHover,
.sf-navbar ul li.active {
	background: #666765; /* anthracite */
}
.sf-navbar ul li:hover,
.sf-navbar ul li.sfHover,
.sf-navbar ul li.active {
	background: #fff;
}
.sf-navbar ul ul li {
	background: #666765; /* anthracite */
}

.sf-navbar ul ul li:hover,
.sf-navbar ul ul li.sfHover,
.sf-navbar ul ul li.active {
	background: #fff;
}

.sf-navbar ul li.active > a,
.sf-navbar ul li:hover > a{
	color:#666765 !important; /* anthracite */
}
.sf-navbar ul ul li.active > a{
	color:#666765 !important; /* anthracite */
}

.sf-navbar ul li a {
	border:0;
}

.sf-navbar ul ul li a,
.sf-navbar ul li.sfHover a {
	color:#fff;
}

.sf-navbar ul li.active > a {
}

/*** point all arrows down ***/
.sf-arrows.sf-navbar ul .sf-with-ul:after {
	margin-top: -3px;
	margin-right: 0;
	border-color: transparent;
	border-top-color: #dFeEFF; /* edit this to suit design (no rgba in IE8) */
	border-top-color: rgba(255,255,255,.5);
}

.sf-arrows.sf-navbar ul > li > .sf-with-ul:focus:after,
.sf-arrows.sf-navbar ul > li:hover > .sf-with-ul:after,
.sf-arrows.sf-navbar ul > .sfHover > .sf-with-ul:after {
	border-color: transparent;
	border-top-color: white;
}






/* pour les mobiles */
@media only screen and (max-width: 700px) {


	.sf-navbar > li > ul {
		min-width: 100% !important;
		max-width:100%;
	}

	.sf-navbar > li > ul > li {
		float: none;
	}

	.sf-navbar li {
		position: inherit;
	}

	.sf-menu li.sfHover > ul {
		display:none !important;
	}
	.sf-menu li:hover > ul {
		display:block !important;
	}


	.sf-navbar > li > ul > li {
		float: none;
	}



}




