/*** adding the class sf-navbar in addition to sf-menu creates an all-horizontal nav-bar menu ***/

.sf-navbar {
    background: #ffffff;
    background: -moz-linear-gradient(top, #3fa4f0 0%, #0f71ba 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3fa4f0), color-stop(100%, #0f71ba));
    background: -webkit-linear-gradient(top, #3fa4f0 0%, #0f71ba 100%);
    background: -o-linear-gradient(top, #3fa4f0 0%, #0f71ba 100%);
    background: -ms-linear-gradient(top, #3fa4f0 0%, #0f71ba 100%);
    background: linear-gradient(to bottom, #3fa4f0 0%, #0f71ba 100%);
    position: relative;
    margin-bottom: 55px;
    width: 100%;
}


/* provide background colour for submenu strip */


/* you should just set the menu's container bg colour rather than use pseudo-elements */

.sf-navbar:before {
    content: '';
    position: absolute;
    left: 0;
    z-index: -1;
    background-color: #EFEFEF;
    height: 200%;
    width: 100%;
}

.sf-navbar ul {
    box-shadow: none;
}

.sf-navbar li {
    background: #ffffff;
    background: -moz-linear-gradient(top, #3fa4f0 0%, #0f71ba 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3fa4f0), color-stop(100%, #0f71ba));
    background: -webkit-linear-gradient(top, #3fa4f0 0%, #0f71ba 100%);
    background: -o-linear-gradient(top, #3fa4f0 0%, #0f71ba 100%);
    background: -ms-linear-gradient(top, #3fa4f0 0%, #0f71ba 100%);
    background: linear-gradient(to bottom, #3fa4f0 0%, #0f71ba 100%);
    position: static;
}

.sf-navbar>li:first-child {
    margin-left: 5px;
    ;
}

.sf-navbar>li>a,
.sf-navbar>li>ul>li>a {
    border: none;
}

.sf-navbar>li>ul {
    min-width: 36em;
    /* set this to whatever suits your design */
}

.sf-navbar ul li {
    background: #EFEFEF;
    position: relative;
}

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

.sf-navbar ul ul li {
    width: 100%;
}

.sf-navbar>li>ul>li {
    float: left;
}

.sf-navbar li.current {
    background: #EFEFEF;
    color: #775e53;
}

.sf-navbar li:hover,
.sf-navbar li.sfHover,
.sf-navbar ul li.current {
    background: #EFEFEF;
}

.sf-navbar ul li:hover,
.sf-navbar ul li.sfHover,
.sf-navbar ul ul li {
    background: #EFEFEF;
    color: #775e53;
}

.sf-navbar ul ul li:hover,
.sf-navbar ul ul li.sfHover,
.sf-navbar ul ul li.current {
    background: #E6EEFF;
    color: #775e53;
}

.sf-navbar li:hover a,
.sf-navbar li.sfHover a,
.sf-navbar li.current a,
.sf-navbar ul li.current a {
    color: #775e53!important;
}

.sf-navbar ul li.current>a {
    font-weight: bold;
}


/*** point all arrows down ***/

.sf-arrows.sf-navbar ul .sf-with-ul:after {
    margin-top: -3px;
    margin-right: 0;
    border-color: transparent;
    border-top-color: #dFeEFF;
    /* edit this to suit design (no rgba in IE8) */
    border-top-color: rgba(119, 94, 83, .9);
}

.sf-arrows.sf-navbar ul>li>.sf-with-ul:focus:after,
.sf-arrows.sf-navbar ul>li:hover>.sf-with-ul:after,
.sf-arrows.sf-navbar ul>.sfHover>.sf-with-ul:after {
    border-color: transparent;
    border-top-color: rgba(119, 94, 83, .9);
}