/*** 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;
	background:#546d94;
	top: 100%;
	left: 0;
	z-index: 99;
	padding:0 5px;
	border-top:#333333 4px solid;
}
.sf-menu > li {
	float: left;
}
.sf-menu li:hover > ul,
.sf-menu li.sfHover > ul {
	display: block;
}

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


/*** DEMO SKIN ***/
.sf-menu {
	float: right;
}
.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 */
}
.sf-menu a {	
	padding:15px 10px 10px; text-align:center;
	text-decoration: none; font:normal 14px/17px 'proxima_nova_rgbold'; text-transform:uppercase;
	zoom: 1; /* IE7 */
}
.sf-menu a span{display:block; padding:0 0 10px;}
.sf-menu a {
	color: #0b1a33; transition: all 140ms ease-in-out;
}
.sf-menu li{margin-left:28px;}
.sf-menu li:first-child{margin-left:0;}
.sf-menu li li a{text-align:left; font-family:'proxima_nova_rgregular'; text-transform:none; padding:8px 15px;}
.sf-menu li {
	white-space: nowrap; /* no need for Supersubs plugin */
	*white-space: normal; /* ...unless you support IE7 (let it wrap) */
	
}
/*.sf-menu li.gap{margin-right:268px;}
.sf-menu li.gap2{margin-left:55px;}*/
.sf-menu ul li {
	border-top:#333333 1px solid; margin:0;
	
}
.sf-menu ul li:first-child{border-top:0;}
.sf-menu ul ul li {
	
}
.sf-menu li:hover,
.sf-menu li.sfHover {
	color:#333333;
	/* only transition out, not in */
}
.sf-menu a:hover, .sf-menu li.sfHover a.sf-with-ul, .sf-menu a.active{color:#333333;}
.sf-menu li ul li a:hover {
	color: #cccccc;
}

/*** arrows (for all except IE7) **/

/* styling for both css and generated arrows */

/* 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;
}
