/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
}
.sf-menu li {
	position: relative;
}

.sf-menu ul {
	position: absolute;
	display: none;
	top: 75px;
	left: 0;
	z-index: 99;
}
.sf-menu > li {
	float: left;
}


.sf-menu li:hover > ul,
.sf-menu li.sfHover > ul {
	display: block;
	cursor: pointer;
}

.sf-menu a {
	padding: 15px;
	font-size: 1.0em;
	display: block;
	position: relative;
}
.sf-menu ul ul {
	top: 0;
}
/*** MAIN SKIN ***/
.sf-menu {
	z-index: 2;
	position: absolute;
	right: 0;
	height: 100%;
}
.sf-menu ul {
	width: 100%; /* allow long menu items to determine submenu width */
	*width: 100%; /* no auto sub width for IE7, see white-space comment below */
}
.sf-menu a {
	margin: auto;
	text-decoration: none;
	zoom: 1; /* IE7 */
}
.sf-menu a {
	color: white;
	font-family: 'MuseoSlab-500';
	width: 100%;
	text-align: center;
	-webkit-transition: color .2s;
	transition: color .2s;
}
.sf-menu li {
	white-space: nowrap; /* no need for Supersubs plugin */
	*white-space: normal; /* ...unless you support IE7 (let it wrap) */
	height: 100%;
}
.sf-menu > li > a {
	top:15px;
}

.sf-menu ul li {
	background: #3c3c3b;
	width: 100%;
}

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

.sf-menu ul ul li {
	background: #3c3c3b;
}

.sf-menu li a:hover,
.sf-menu li.sfHover a{
	cursor: pointer;
	/* only transition out, not in */
	-webkit-transition: none;
	transition: none;
}

.current a,
.sf-menu li a:hover {
	color: #678aa4!important;
	cursor: pointer;
}

.current:before,
.sf-menu li:hover:before,
.sf-menu li.sfHover:before {
	position: absolute;
	left: 0;
    right: 0;
    margin: auto;
	content:'';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 5px 0 5px;
	border-color: #ffffff transparent transparent transparent;
	line-height: 0px;
	_border-color: #ffffff #000000 #000000 #000000;
	_filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
}
