/*=DROPDOWN MENU=*/
.nav-wrap{
    min-height: 48px;
    background-color: #3b4855;
}

.sf-menu{
    display:inline-block;
    z-index: 9999;
}
.sf-menu, .sf-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}
.sf-menu li {
    position: relative;
}

.sf-menu ul {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 999;
}
.sf-menu ul li {
    text-align: left;
}

.sf-menu > li {
    display: inline-block;
}
.sf-menu > li > a{
    line-height: 48px;
    font-weight: 500;
}
.sf-menu li:hover > ul,
.sf-menu li.sfHover > ul {
    display: block;
}

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




/*** SKIN ***/
.sf-menu ul {
    /*box-shadow: 0px 2px 3px rgba(0,0,0,.1);*/
    min-width: 16em;
    padding-top: 24px;
    padding-bottom: 24px;

    border-bottom:#b6c3d5 3px solid;
    border-left:0px;
    border-right:0px;
    margin-top: 0px;
    background-color: #e8edf4;

}
.sf-menu a {
    padding: .75em  1em;
    text-decoration: none;
    color: #666666;
}

.sf-menu > li > a {
    padding: 0px  1em;
    text-decoration: none;
    color: #333 !important;
}

.sf-menu > li > a:hover,.sf-menu li.sfHover > a {
    background-color:#e8edf4;
    color: #478dbf;

}
.sf-menu ul li.sfHover > a{
    background-color:#dae2ec;
    color: #478dbf;
}
.sf-menu > li:hover > a:before  {
    content: '';
    height: 5px;
    width: 100%;
    display: block;
    background-color: #478dbf;
    position: absolute;
    top: -5px;
    left: 0;

}


.sf-menu li.current,.sf-menu li.current > a, .sf-menu a:hover, .nav-fill .sf-menu > li.sfHover > a, .nav-fill .sf-menu > li.sfHover  li.sfHover > a,.nav-fill .sf-menu > li > a:hover{
    color: #478dbf;
    background-color: #dae2ec;
}





.sf-arrows .sf-with-ul {
    padding-right: 2.5em;

}

.sf-arrows .sf-with-ul:after {
    content: '\f107';
    font-family: 'FontAwesome';
    position: absolute;
    right: 1.5em;
    height: 0;
    width: 0;
    color: #ddd;

}
.sf-menu li.current .sf-with-ul:after{
    color: #1fa3ba;
}
.sf-arrows > li > .sf-with-ul:focus:after,
.sf-arrows > li:hover > .sf-with-ul:after,
.sf-arrows > .sfHover > .sf-with-ul:after {
    color: #1fa3ba;

}

.sf-arrows ul .sf-with-ul:after {
    content: '\f105';
    font-family: 'FontAwesome';
    color: #ccc;
    top: 10px;


}
.sf-arrows > ul > li > a.sf-with-ul:after {
    content: '\f107';
    font-family: 'FontAwesome';
    color: #ccc;
    top:0px;



}

.sf-arrows .sf-menu > li > a.sf-with-ul:after {
    content: '\f107';
    font-family: 'FontAwesome';
    color: #ccc;
    top:0px;



}

.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 {
    color: #1fa3ba;

}


.sf-menu a,.sf-menu a:hover,.nav-fill .sf-menu > li > a:hover, .nav-fill .sf-menu > li.sfHover > a,.sf-menu li.current,.sf-menu li.current, .sf-menu a:hover, .nav-fill .sf-menu > li.sfHover > a, .nav-fill .sf-menu > li.sfHover  li.sfHover > a,.nav-fill .sf-menu > li > a:hover,
.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,
.sf-arrows ul .sf-with-ul:after,
.sf-arrows > li > .sf-with-ul:focus:after,
.sf-arrows > li:hover > .sf-with-ul:after,
.sf-arrows > .sfHover > .sf-with-ul:after,
.sf-arrows .sf-with-ul:after
{
    -webkit-transition:all 100ms linear;
    -moz-transition:all 100ms linear;
    -o-transition:all 100ms linear;
    -ms-transition:all 100ms linear;
    transition:all 100ms linear;
}

.too_narrow_fix {
    left: -16em !important;
    top: 0  !important;
}


/*=VERTICAL MENU=*/
/* adding sf-vertical class in addition to sf-menu creates a vertical menu */
/* eg. <ul class="sf-menu sf-vertical"> ... */
.sf-vertical {
    width: 12em;
    /* If you want the width of the closed menu to expand to its
    widest top-level menu item (like its "Supersubs" submenus do),
    replace the width rule above with the following two rules. */

    /*
    min-width: 12em;
    *width: 12em;
    */
}
.sf-vertical ul {
    left:	100%;
    top: 0;
}
.sf-vertical > li {
    float: none;
}
.sf-vertical li {
    width: 100%;
}

/*** alter arrow directions ***/
.sf-vertical.sf-arrows > li > .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-vertical.sf-arrows li > .sf-with-ul:focus:after,
.sf-vertical.sf-arrows li:hover > .sf-with-ul:after,
.sf-vertical.sf-arrows .sfHover > .sf-with-ul:after {
    border-left-color: white;
}


