﻿/* header */
header {
    /* push header down from ad space/top */
    margin: 14px 0px 0px 0px;
}

/* nav */
/* nav element */
nav {
    /* transparent background */
    background-color: transparent;
}

/* navbar class */
.navbar {
    /* adjust height */
    min-height: 50px;
    /* remove default border */
    border: 0;
    /* remove background color */
    background-color: transparent;
    /* remove bottom margin */
    margin-bottom: 0px;
}

/* toggle button */
.navbar-default .navbar-toggle {
    /* change background color */
    background-color: #262d6f;
    /* bring to front */
    z-index: 1;
    /* margins */
    margin-top: 5px;
    margin-bottom: 5px;
    /* remove border */
    border: 0;
}

.navbar-default .navbar-toggle:hover {
    /* change hover style */
    background-color: #6f70a9;
}

.navbar-default .navbar-toggle:focus {
    /* remove focus style */
    background-color: #262d6f;
}

/* toggle button bars */
.navbar-toggle > .icon-bar {
    /* change bar color */
    background-color: white !important;
}

/* remove default nav border */
.navbar-default .navbar-collapse, .navbar-default .navbar-form {
    border: 0;
}

/* brand container */
.navbar-brand-cont {
    /* position absolute */
    position: absolute;
    /* almost fill parent container */
    width: 95%;
    /* center content */
    text-align: center;
    /* margin */
    margin-left: 10px;
}

/* brand image*/
.nav-brand-img {
    /* fill parent container */
    width: 100%;
    /* set max width */
    max-width: 400px;
}

/* nav right */
.navbar-right {
    /* give slight margin top */
    margin-top: 8px;
    /* remove bottom margin */
    margin-bottom: 0px;
}

/* nav buttons */
.navbar-nav > li > .nav-button {
    /* blue background */
    background-color: #262d6f !important;
    /* white text */
    color: white !important;
    /* thin font */
    font-weight: 300;
    /* margin */
    margin-right: 18px;
    /* padding */
    padding: 5px 15px;
    /* border radius */
    border-radius: 2px;
}

    /*fix nav buttons hover*/
    .navbar-nav > li > .nav-button:hover {
        /* blue background */
        background-color: #6f70a9 !important;
        /* white text */
        color: white !important;
        /* remove text decoration */
        text-decoration: none !important;
    }

    /*fix nav buttons active*/
    .navbar-nav > li > .nav-button:focus {
        /* blue background */
        background-color: #262d6f !important;
        /* white text */
        color: white !important;
        /* remove text decoration */
        text-decoration: none !important;
    }

/* nav button icons */
.nav-btn-icon {
    /* white fill */
    color: white;
    /* padding */
    padding: 0px 7px 0px 3px;
}

.navbar-collapse {
    /* fix for nav collapse */
    padding-left: 35px;
}