﻿.menu-items ul#menu {
    right: 0;
}

.menu-items ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: absolute;
}

.menu-items li {
    display: inline-block;
    float: left;
    margin-right: 1px;
}

    .menu-items li a {
        display: block;
        min-width: 140px;
        line-height: 45px;
        text-align: center;
        font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
        font-size: 1.0625rem;
        font-weight: bold;
        text-transform: uppercase;
        color: #ffffff;
        background: #009dd1;
        text-decoration: none;
    }

    .menu-items li:hover a {
        background: #003552;
        color: #ffffff;
    }

    .menu-items li:hover ul a {
        color: #0054a4;
        background: #003552;
        height: 40px;
        line-height: 40px;
        border-right: 1px solid #aeaeae;
        border-left: 1px solid #aeaeae;
        border-bottom: 1px solid #aeaeae;
    }

    .menu-items li:first-child:hover ul a {
        border-bottom: 10px solid #aeaeae;
    }


    .menu-items li:hover ul a:hover {
        background: #b8c128;
        color: #fff;
    }

    .menu-items li ul {
        display: none;
    }

        .menu-items li ul li {
            display: block;
            float: none;
        }

            .menu-items li ul li a {
                width: auto;
                min-width: 100px;
                padding: 0 20px;
            }

.menu-items ul li a:hover + .hidden, .hidden:hover {
    display: block;
}

.menu-items .show-menu {
    display: none;
    min-width: 140px;
    line-height: 45px;
    text-align: center;
    font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    font-size: 1.0625rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #ffffff;
    background: #009dd1;
    text-decoration: none;
    float:right;
}

.menu-items input[type=checkbox] {
    display: none;
    -webkit-appearance: none;
}

    .menu-items input[type=checkbox]:checked ~ #menu {
        display: block;
    }


/*Responsive Styles*/

@media screen and (max-width : 760px) {
    .menu-items ul {
        position: static;
        display: none;
    }

    .menu-items li {
        border-bottom: 1px solid #ffffff;
    }
    .menu-items li:last-child {
        border-bottom: 0;
    }

    .menu-items ul li, li a {
        width: 100%;
    }

    .menu-items .show-menu {
        display: block;
    }
}
