/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
	position: relative;
}
.sf-menu li {
	position: relative;
}
.sf-menu ul {
	position: absolute;
	display: none;
	top: 100%;
	left: 0;
	z-index: 99;
}
.sf-menu > li {
	float: left;
}
.sf-menu li:hover > ul,
.sf-menu li.sfHover > ul {
	display: block;
}

.sf-menu a {
	display: block;
	position: relative;
   font-family: 'proxima_novasemibold';

}
.sf-menu ul ul {
	top: 0;
	left: 100%;
	
}

/*** DEMO SKIN ***/
.sf-menu {
	float: left;
}
.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:15em; /* no auto sub width for IE7, see white-space comment below */
	
}
.sf-menu a {
	padding: .40em 1em;
	text-decoration: none;
	zoom: 1; /* IE7 */
	font-family: 'proxima_novasemibold';

}
.sf-menu a {
	color: #fff;
	
    /*text-shadow: 1px 1px #960800;*/
}

.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;
}

.sf-menu ul li {
    background-color: #0e6e69;
    border-left: 1px solid #0e6e69;
    border-right: 1px solid #0e6e69;
	
}

.sf-menu ul li:first-child {
    border-top: 2px solid #0e6e69;
}

.sf-menu ul li{
    border-top: 1px solid  #00d3cc;
}

.sf-menu ul li:last-child{
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.sf-menu li:hover a:hover,
.sf-menu li.sfHover a:hover{
	background-color:#F3F3F3;
    color: #0e6e69;
    text-shadow: none;
}
.sf-menu li:hover,
.sf-menu li.sfHover {
    /* IE10 Consumer Preview */ 
background-image: -ms-linear-gradient(bottom, #DCDCDC 0%, #F3F3F3 100%);

/* Mozilla Firefox */ 
background-image: -moz-linear-gradient(bottom, #DCDCDC 0%, #F3F3F3 100%);

/* Opera */ 
background-image: -o-linear-gradient(bottom, #DCDCDC 0%, #F3F3F3 100%);

/* Webkit (Safari/Chrome 10) */ 
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #DCDCDC), color-stop(1, #F3F3F3));

/* Webkit (Chrome 11+) */ 
background-image: -webkit-linear-gradient(bottom, #DCDCDC 0%, #F3F3F3 100%);

/* W3C Markup, IE10 Release Preview */ 
background-image: linear-gradient(to top, #DCDCDC 0%, #F3F3F3 100%);
	/* only transition out, not in */
	-webkit-transition: none;
	transition: none;
}

/*** arrows (for all except IE7) **/
.sf-arrows .sf-with-ul {
	padding-right: 2.5em;
	*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: 1em;
	margin-top: -3px;
	height: 0;
	width: 0;
}
.sf-arrows > li > .sf-with-ul:focus:after,
.sf-arrows > li:hover > .sf-with-ul:after,
.sf-arrows > .sfHover > .sf-with-ul:after {
}
/* 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;
}
