/*menu with jquery.horizontalNav.js*/

nav { 
	display: block;
	z-index: 11;
	float: right;
	margin-top: 50px;
}

.sf-menu {}
.sf-menu > li > span { display: block; position: relative;}
.sf-menu ul { position:absolute; top:-999px; display:none; }/*offset of submenus need to match (see below)*/
.sf-menu li { position:relative; background: none;}
	.sf-menu a {
		display: block;
		text-decoration: none;
		font-family: 'Open Sans', sans-serif;
		font-weight: 600;
		text-transform: uppercase;
		font-size: 14px;
}
		.sf-menu a:hover {text-decoration: none;}

/*================================>> 1 Level <<========================================*/

li.sfHover {position: relative;}
.sf-menu > li > a {
	display:inline-block;
	vertical-align: middle;
	line-height: 20px;
	-moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease;
	z-index: 100;
	color: #c5c7b6;
}
.sf-menu > li {
	display: block;
	position: relative;
	float: left;
}
.sf-menu > li + li { margin-left: 29px;}
	.sf-menu > li:hover > a, 
	.sf-menu > li.current > a, 
	.sf-menu > li.sfHover > a,
	.sf-menu > li:hover > span, 
	.sf-menu > li.current > span, 
	.sf-menu > li.sfHover > span {
		color: #fff;
	}

.sf-menu > li > a.sf-with-ul:after {
	position: absolute;
	display: block;
	content:"\f107";
	left: 0px;
	right: 0;
	text-align: center;
	margin-left: -1px;	
	bottom: -15px;
	-moz-transition: top 0.3s ease-out;
    -o-transition: top 0.3s ease-out;
    -webkit-transition: top 0.3s ease-out;
	overflow: hidden;
	display: inline-block;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 15px;
}


/*================================>> 2 Level <<========================================*/

.sf-menu > li > ul, 
.sf-menu > li.sfHover > ul {
	top: 43px;
	left: 50%;
	width: 234px;
	margin-left: -117px;
	z-index:99;
	background: #400000; /*==========   BACK GROUND COLOUR TO DROP DOWN MENU   =================*/
	text-align: center;
	padding-top: 31px;
	padding-bottom: 35px;
}

.sf-menu > li > ul > li > a {
	display: inline-block;
	padding: 0px;
	color: #fff;
	line-height: 28px;
}
.sf-menu li li a:hover, 
.sf-menu li.sfHover li.sfHover > a,
.sf-menu li.sfHover li.sfHover span { 
	color: #b8baaa;
}

.sf-menu > li > ul > li > a.sf-with-ul:after  {
	position: absolute;
	display: block;
	content:"\f107";
	right: 6px;
	text-align: center;
	margin-left: -10px;	
	top: 5px;
	-moz-transition: top 0.3s ease-out;
    -o-transition: top 0.3s ease-out;
    -webkit-transition: top 0.3s ease-out;
	overflow: hidden;
	display: inline-block;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 14px;
	color: #fff;
}
.sf-menu > li > ul > li > a.sf-with-ul:hover:after  { color: #b8baaa;}

/*================================>> 3 Level <<========================================*/

.sf-menu li li ul {
	top: -2px;
	left: 254px;
	z-index:99;
	position: absolute;
	text-align: center;
	padding-top: 9px;
	padding-bottom: 6px;
	background: #ffffff;
	width: 234px;
	padding-top: 25px;
	padding-bottom: 28px; 
	border: 1px solid #323841;
}

.sf-menu li li li a {
	display: inline-block;
	color: #323841;
	line-height: 28px;
}
.sf-menu li li li a:hover {	color: #b8baaa;}


/*==================================RESPONSIVE LAYOUTS===============================================*/


@media only screen and (max-width: 995px) {
}
@media only screen and (max-width: 795px) {

}
@media only screen and (max-width: 767px) {
	ul.sf-menu { display:none !important;}

	nav select {
		height: 35px;
		border: 1px solid #fff;
		font-family: Trebuchet MS, sans-serif;
		font-size: 14px;
		line-height: 20px;
		color: #344046;
		background-color: #fff;
		width: 100%;
	    outline: none;
	    padding: 5px;
		font-weight: bold;
}
	nav select option:first-child {
		color:#20201f;
	}
	h1, nav { float: none;}
	nav { margin-top: 50px;}
}

@media only screen and (max-width: 479px) {
}





