﻿
* {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}



body {
    margin: 0;
    font-family: sans-serif;
    line-height: 1.5;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


.main-nav,
.drop-nav {
    background: #58595b;
    z-index: 100000;
}

.main-nav {
    float: left;
    border-radius: 4px;
    z-index: 100000;
}

    .main-nav > li {
        float: left;
        border-left: solid 1px #1e2a36;
    }

    .main-nav li:first-child {
        border-left: none;
    }

    .main-nav a {
        color: #fff;
        display: block;
        padding: 7px 20px;
        text-decoration: none;
    }

        .main-nav a:hover {
            color: #f58931;
        }

.dropdown,
.flyout {
    position: relative;
    white-space: nowrap;
    color: white;
    z-index: 100000;
}

    .dropdown:after {
        content: "\25BC";
        font-size: .5em;
        display: block;
        position: absolute;
        top: 38%;
        right: 12%;
    }

    .dropdown:hover, .dropdown a:hover {
        color: #f58931;
    }


.drop-nav,
.flyout-nav {
    position: absolute;
    display: none;
    z-index: 100000;
}


.flyout:hover {
    color: #f58931;
}

.drop-nav li {
    border-bottom: 1px solid rgba(255,255,255,.2);
}

.flyout:after {
    content: "\25BA";
    font-size: .5em;
    display: block;
    position: absolute;
    top: 40%;
    right: 12%;
}

.dropdown:hover > .drop-nav,
.flyout:hover > .flyout-nav {
    display: block;
}

.flyout-nav {
    left: 100%;
    top: 0;
    z-index: 100000;
}

.flyout:hover a,
.flyout-nav {
    background: #58595b;
}

.disabled {
    opacity: 0.7;
    background-color: silver;
    cursor: not-allowed;
}

    .disabled a {
        cursor: not-allowed;
        opacity: 0.7;
        color: white;
    }

    .disabled > * {
        pointer-events: none;
    }

.main-nav .disabled a:hover {
    cursor: not-allowed;
    color: white;
}

/*Animated Logo at the top of page*/

.animated {
    float: right;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }

    60% {
        opacity: 1;
        transform: translateY(5px);
    }

    80% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}
