
/* ==================================================
   Header
================================================== */

header {
    width: 100%;
    z-index: 99;
}

    header .sticky-nav {
        position: relative;
        width: 100%;
        height: 60px;
        background: #26292E;
        z-index: 1001;
        -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
        -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
    }

        header .sticky-nav.stuck {
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1001;
        }

    header #logo {
        color: #FFFFFF;
        float: left;
        padding: 15px 0;
        margin-left: 20px;
    }

        header #logo a {
            background: url('/Content/images/skarstind-logo.png') no-repeat;
            width: 96px;
            height: 30px;
            text-indent: -9999px;
            display: block;
            opacity: 1;
            filter: alpha(opacity=100);
            -webkit-transition: opacity 0.25s ease-in-out 0s;
            -moz-transition: opacity 0.25s ease-in-out 0s;
            -o-transition: opacity 0.25s ease-in-out 0s;
            transition: opacity 0.25s ease-in-out 0s;
        }

            header #logo a:hover {
                opacity: 0.65;
                filter: alpha(opacity=65);
            }


nav#menu #menu-nav li a {
    font-size: 15px;
    font-weight: 300;
    text-transform: uppercase;
    display: block;
}

nav#menu #menu-nav li {
    list-style: none;
    margin-left: 30px;
}

    


/* 
    ---------------------------------------
    Navbar & Menu Styles
    ---------------------------------------
*/


.section-colored {
    /* change this to change the background color of a colored page section */
    background-color: #26292E;
}

.navbar {
    background-color: #2F3238;
    border: 0px;
}

.navbar-inverse .navbar-nav > li > a {
    color: gainsboro;
}

    .navbar-inverse .navbar-nav > li > a:hover,
    .navbar-inverse .navbar-nav > li > a:focus {
        color: #428bca;
        background-color: transparent;
    }

.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
    color: #428bca;
    background-color: transparent;
}

.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
    color: #428bca;
    background-color: transparent;
}


/* 
    ---------------------------------------
    Drop down menu section
    ---------------------------------------
*/

.dropdown-menu {
    /*background-color: lightgray;
    border: 1px solid lightsteelblue;*/
    background-color: #2F3238;
    color: #428bca;
    border: 1px solid #999999;
}

.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #428bca;
    background-color: transparent;
}

.navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808;
}

.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #899999;
}


/* ==================================================
   Mobile Navigation
================================================== */

#mobile-nav {
    display: none;
}

.menu-nav {
    background: url('/Content/images/menu-mobile.png') 0 0 no-repeat;
    background-color: transparent;
    background-position: 0 -16px;
    width: 16px;
    height: 16px;
    display: block;
    margin: 0px 0 0 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: -webkit-transform 250ms ease-out 0s;
    -moz-transition: -moz-transform 250ms ease-out 0s;
    -o-transition: -o-transform 250ms ease-out 0s;
    transition: transform 250ms ease-out 0s;
}

    .menu-nav.collapsed {
        background-position: 0 0px;
        -webkit-transform: rotate(-180deg);
        -moz-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        -o-transform: rotate(-180deg);
        transform: rotate(-180deg);
        -webkit-transition: -webkit-transform 250ms ease-out 0s;
        -moz-transition: -moz-transform 250ms ease-out 0s;
        -o-transition: -o-transform 250ms ease-out 0s;
        transition: transform 250ms ease-out 0s;
    }


#navigation-mobile {
    display: none;
    text-align: center;
    width: 100%;
    background: #26292E;
    border-bottom: 1px solid #2F3238;
    position: relative;
    float: left;
    z-index: 9999;
}

    #navigation-mobile li {
        list-style: none;
        border-top: 1px solid #2F3238;
    }

        #navigation-mobile li a {
            display: block;
            font-size: 16px;
            text-transform: uppercase;
            padding: 20px 0;
        }


/*
    ------
    Breadcrumb
    ------
*/

.breadcrumb {
    font-size: 14px;
    padding: 8px 15px;
    margin-bottom: 20px;
    list-style: none;
    background-color: #26292E;
    border-radius: 4px;
    text-transform: uppercase;
}

a {
    /*color: #DE5E60;*/
    color: #428bca;
    text-decoration: none;
}

    a:hover,
    a:focus {
        color: #2a6496;
        text-decoration: underline;
    }
