
/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
}
.sf-menu li {
	position: relative;
}
.sf-menu ul {
	top: 100%;
	position: absolute;
	display: none;
	left: 0;
	z-index: 99;
}
.nav .sf-menu > li {
	float: left;
	font-size: 20px; 
	font-size: 2rem;
}
.sf-menu li:hover > ul,
.sf-menu li.sfHover > ul {
	display: block;
}

.sf-menu ul ul {
	top: 0;
	left: 100%;
}


/*** DEMO SKIN ***/
.sf-menu {
	float: left;
}

.sf-menu li {
	font-family:'DIN Next W01 Light', Arial, Helvetica, sans-serif; 
	font-style: normal;
	font-size: 18px;
	font-size: 1.8rem;
	white-space: nowrap; /* no need for Supersubs plugin */
	*white-space: normal; /* ...unless you support IE7 (let it wrap) */
	-webkit-transition: background .2s;
	transition: background .2s;
	 
}
.sf-menu > li > a {
	text-transform: uppercase;
}
.sf-menu a {
	display: block;
	position: relative;
	padding: 0.6em .95em 0.2em;
	text-decoration: none;
	zoom: 1; /* IE7 */
	color: #fff;
	-webkit-transition: color 200ms ease-in;
	-moz-transition: color 200ms ease-in;
	-ms-transition: color 200ms ease-in;
	-o-transition: color 200ms ease-in;
	transition: color 200ms ease-in;
}
.sf-menu ul {
	-webkit-box-shadow: 0 0 5px 0px rgba(0,0,0,0.3);
	box-shadow: 0 0 5px 0px rgba(0,0,0,0.3);
}
.sf-menu ul a {
	display: block;
padding: 5px 0;
vertical-align: bottom;
text-decoration: none;

	background: #FFF;
	background-position: right 10px center;
-webkit-transition: all 200ms ease-in;
-moz-transition: all 200ms ease-in;
-ms-transition: all 200ms ease-in;
-o-transition: all 200ms ease-in;
transition: all 200ms ease-in;
display: block;
padding: 10px 46px 9px 20px;
vertical-align: bottom;
color: #515152;
}
html.lt-ie9 .sf-menu ul a {
	background: #eee;
}
.sf-menu ul li a:hover {
	background: #cd5c27;
	color: #FFF;
}

.sf-menu > li > a:hover {
	color: #cd5c27;
}
.sf-menu li li:first-child{
	margin-top: 0;
}
.sf-menu li li:last-child{
	margin-bottom: 0;
}
.sf-menu li li {
	list-style-type: none;

	margin: 0;
	font-family: 'HelveticaNeueETW01-55Rg', Helvetica, Arial, sans-serif;
	font-size: 16px; font-size: 1.6rem;
}


/* Home icon on desktop */


@media screen and (min-width: 850px) {
		
	.sf-menu > li:first-child a {
		text-indent: 100%; 
		white-space: nowrap; 
		overflow: hidden;
		color: transparent; 
		background: url(../images/icon_home.png) no-repeat center 10px; 
		width: 42px; 
		margin-left: 5px;
		-webkit-transition: none; 
		-ms-transition: none; 
		-o-transition: none;
		transition: none;
	}

	.sf-menu > li:first-child a:hover,
	.sf-menu > li.on:first-child a {
		background-position: center -80px;
	 
		
}
		/*fallbacks*/
		.no-backgroundsize .sf-menu > li:first-child a {
			background: pink; 
			background: url(../images/icon_home_fallback.png) no-repeat center 13px;

		}

		.no-backgroundsize .sf-menu > li:first-child a:hover,
		.no-backgroundsize .sf-menu > li.on:first-child a {
			background: url(../images/icon_home_fallback.png) no-repeat center -51px; 
		}
}
@media screen and (max-width: 1000px) {
	.sf-menu > li:first-child a:hover,
	.sf-menu > li.on:first-child a {
		background-position: center -82px;
	 
		
}
.sf-menu > li:first-child a {
		background: url(../images/icon_home.png) no-repeat center 9px; 
		width: 33px; 
		margin-left: 8px;
	}
}


/*Subnav*/
.sf-menu ul {
	min-width: 12em; /* allow long menu items to determine submenu width */
	*width: 12em; /* no auto sub width for IE7, see white-space comment below */
	background: #FFFFFF;
}




/*** arrows (for all except IE7) **/
.sf-arrows .sf-with-ul {
	padding-right: 1.8em;
	*padding-right: 1em; /* no CSS arrows for IE7 (lack pseudo-elements) */
}
/* styling for both css and generated arrows */
.sf-arrows .sf-with-ul:after {
	content: '';
	position: absolute;
	top: 50%;
	right: .8em;
	margin-top: -7px;
	height: 0;
	width: 0;
	/* order of following 3 rules important for fallbacks to work */
	border: 5px solid transparent; /* edit this to suit design (no rgba in IE8) */
	border-bottom-color: #cd5c27;
}
.sf-arrows .sf-with-ul:after {
	margin-top: -1px;
	border-top-color: #cd5c27;
	border-bottom-color: transparent;
}
/* styling for right-facing arrows */
.sf-arrows ul .sf-with-ul:after {
	margin-top: -5px;
	margin-right: -3px;
	border-color: transparent;
	border-left-color: #dFeEFF; /* edit this to suit design (no rgba in IE8) */
	border-left-color: rgba(255,255,255,.5);
}
.sf-arrows ul li > .sf-with-ul:focus:after,
.sf-arrows ul li:hover > .sf-with-ul:after,
.sf-arrows ul .sfHover > .sf-with-ul:after {
	border-left-color: white;
}

