.ae-navbar-nav {
    align-content: stretch;
    align-items: center;
    -webkit-align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    display: table;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    height: 100%;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    -ms-flex-line-pack: stretch;
    margin: 0;
    width: 100%;
}

.ae-nav-item-container {
    align-items: center;
    border-right: 0;
    display: flex;
    height: 100%;
    position: relative;
}

/* Gets right-most button to line up more closely with right-margin of page-wrap */
.ae-nav-item-container:nth-last-child(1) .ae-dropdown-toggle {
    padding-right: 0;
}

.ae-nav-item-container:first-child .ae-nav-item {
    padding-right: 8px;
}

/* Prevent the 2 right-most dropdown menus from bleeding off the right edge of the screen */
/* This is done be aligning the dropdowns with the right edge rather than the left */
.ae-navbar-nav .ae-nav-item-container:nth-last-child(1) .ae-dropdown-menu.active,
.ae-navbar-nav .ae-nav-item-container:nth-last-child(3) .ae-dropdown-menu.active {
    left: auto;
    right: 0;
}

.ae-navbar-nav > .nav-border {
    background: #fff;
    height: 20px;
    width: 2px;
    list-style: none;   
}

.ae-nav-item {
    background: transparent;
    color: #ffffff;
    display: block;
    font-size: 16px;
    font-weight: 300;
    text-decoration: none;
    padding: 1px 6px;
}

.ae-nav-item:hover,
.ae-nav-item:hover > .fa-home {
    color: #fff;
}

.ae-navbar-nav > .ae-nav-item-container > .ae-dropdown-menu {
    opacity: .05;
    -moz-transition: -moz-transform 0s ease-in-out;
    -o-transition: -o-transform 0s ease-in-out;
    -webkit-transition: -webkit-transform 0s ease-in-out;
    transition: transform 0s  ease-in-out;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    -o-transform-origin: top;
    -webkit-transform-origin: top;
    transform-origin: top;
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    visibility: hidden;
}

.ae-dropdown-menu {
    background: #f3f3f3;
    display: block;
    padding: 10px 15px;
    position: absolute;
    top: 65px;
}

.ae-navbar-nav > .ae-nav-item-container > .ae-dropdown-menu.active {
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    -webkit-transform: scaleY(1);
    left: 0;
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
    -moz-transition: -moz-transform .4s ease-in-out, opacity ease-in .4s;
    -o-transition: -o-transform .4s ease-in-out, opacity ease-in .4s;
    -webkit-transition: -webkit-transform .4s ease-in-out, opacity ease-in .4s;
    transition: transform .4s ease-in-out, opacity ease-in .4s;
    z-index: 100;
}

.ae-dropdown-menu .ae-nav-item-container {
    padding-top: 6px;
    z-index: 10;
}

.ae-dropdown-menu > .ae-nav-item-container:first-child {
    padding-top: 0;
}

/* MSU Branding Colors */
.ae-dropdown-menu .ae-nav-item       { color: #000000; width: 100%; }
.ae-dropdown-menu .ae-nav-item:hover { color: #18453b; }

.ae-navbar-nav *:focus,
.ae-navbar-nav .ae-dropdown-menu *:focus { outline: none; }

.ae-navbar-nav *:focus { color: #fff; }
.ae-navbar-nav .ae-dropdown-menu *:focus { color:#000; }

.has-tabbed .ae-navbar-nav *:focus {
    color: #000;
    text-decoration: none;
    outline: 2px dotted #ffffff;
}

.has-tabbed .ae-navbar-nav .ae-dropdown-menu *:focus {
    color: #000000;
    outline: 2px dotted #000000;
}
@media screen and (max-width: 1300px) {
    .ae-nav-item { font-size: 12px; }
}

@media screen and (max-width: 1024px) {
    .nav-wrap { display: none; }
}