.sf-menu,
.sf-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
    cursor: pointer;
}

.sf-menu li {
    position: relative;
    text-align: left
}

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

.sf-menu>li {
    display: inline-block;
}

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

.sf-menu a, 
.sf-menu span {
    display: block;
    position: relative
}

.sf-menu ul ul {
    top: -1px;
    left: 100%;
}

.sf-menu ul li a {
    padding: 10px 14px;
}

.sf-menu ul li span {
    padding: 10px 14px;
    display: block;
}

.sf-menu {
    width: 100%;
}

.sf-menu ul {
    width: 100%;
    box-shadow: 2px 2px 6px 2px rgba(0, 0, 0, .3);
    /*min-width: 13em;*/
    /* allow long menu items to determine submenu width */
    /**width: 13em;*/
    /* no auto sub width for IE7, see white-space comment below */
}

.sf-menu li a, 
.sf-menu span {
    color: #FFF;
    font-size: 1.125rem;
    font-weight: 600;
    font-style: normal;
    padding: 10px 2.7vw;
    text-decoration: none;
    zoom: 1;
    /* IE7 */
}

.sf-menu li a i {
    font-size: 2rem;
}

.sf-menu li.last a {
    background-color: rgba(120, 175, 227, .65);
    padding: 10px 17vw 10px 2.7vw;
}

.sf-menu a:hover {
    color: #EEE;
}

.sf-menu li {
    /*white-space: nowrap;*/
    /* no need for Supersubs plugin */
    *white-space: normal;
    /* ...unless you support IE7 (let it wrap) */
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
}

.sf-menu ul {
    border-left: 1px solid #012d54;
    border-top: 1px solid #012d54
}

.sf-menu ul li {
    text-align: center;
    background: rgba(1, 45, 84, .95);
    border-bottom: 3px solid #012d54;
    border-right: 1px solid #012d54;
}

.sf-menu ul li a {
    font-weight: 200;
}

.sf-menu>li:hover>a, .sf-menu>li:hover>span {
    color: #FFF;
}

.sf-menu ul li:hover {
    background: rgba(1, 63, 117, 1);
    border-bottom: 3px solid #78afe3;
}


/*
chaining hover
#nav > li:hover > a {}
#nav > li > ul > li:hover > a {}
#nav > li > ul > li > ul > li:hover > a {}
*/


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

.sf-arrows .sf-with-ul {
    padding-right: 1em;
    *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: 5px;
    margin-top: -1px;
    height: 0;
    width: 0;
    /* order of following 3 rules important for fallbacks to work */
    border: 5px solid transparent;
    border-top-color: #FFF;
    /* edit this to suit design (no rgba in IE8) */
    border-top-color: rgba(255, 255, 255, 1);
}

.sf-arrows>li>.sf-with-ul:focus:after,
.sf-arrows>li:hover>.sf-with-ul:after,
.sf-arrows>.sfHover>.sf-with-ul:after {
    border-top-color: #8780cc
}


/* styling for right-facing arrows */

.sf-arrows ul .sf-with-ul:after {
    margin-top: -5px;
    margin-right: -3px;
    border-color: transparent;
    border-left-color: #FFF;
    /* edit this to suit design (no rgba in IE8) */
    border-left-color: rgba(0, 0, 0, .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: #000
}