/*** ESSENTIAL STYLES ***/
header .sf-menu, header .sf-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
}
header .sf-menu li {
	position: relative;
}
header .sf-menu ul {
	position: absolute;
	display: none;
	top: 100%;
	left: 0;	
}
header .sf-menu > li {
	float: left;
}
header .sf-menu li:hover > ul,
header .sf-menu li.sfHover > ul {
	display: block;
}

header .sf-menu a {
	display: block;
	position: relative;
}
header .sf-menu ul ul {
	top: 0;
	left: 100%;
}


/*** DEMO SKIN ***/
header .sf-menu {
	float: right;
	margin-top: 80px;
	margin-right: 5px;
}
header .sf-menu ul {
	box-shadow: 2px 2px 6px rgba(0,0,0,.2);
	min-width: 12em; /* allow long menu items to determine submenu width */
	*width: 12em; /* no auto sub width for IE7, see white-space comment below */
}
header .sf-menu a {
	border-top: 1px solid #FFF; /* fallback colour must use full shorthand */
	border-top: 1px solid rgba(255,255,255,.5);
	padding: 0 20px;
	text-decoration: none;
	zoom: 1; /* IE7 */
}
header .sf-menu > li > a {
	color: #be1e2d;
	border-left: 1px solid #000;
	font-family:'Neuron W03 Extra Bold', Helvetica, Arial, sans-serif;
	font-size: 26px;
	-webkit-transition: color .2s;
	transition: color .2s;
	text-transform: lowercase;
}
header .sf-menu li:first-child a {
	border-left: none;
}
header .sf-menu li {
	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;
}
header .sf-menu li.on a {
	color: #000;
}
header .sf-menu li.on li.on a,
header .sf-menu li.on li a {
	color: #fff;
}

/* top level list items */
header .sf-menu li > a:hover,
header .sf-menu li.sfHover > a {
	color: #000;
	-webkit-transition: none;
	transition: none;
}
/* drop down list items*/
header .sf-menu ul li a:hover,
header .sf-menu ul li.sfHover a {
	background: #be1e2d;
	color: #fff;
	-webkit-transition: none;
	transition: none;
}
header .sf-menu ul li {
	background: #000;
}
header .sf-menu ul li a {
	color: #fff;
	padding: 5px 15px;
}
