/****************** GOVBAR *****************************/
@media only screen and (min-width: 20em) {
    .govbar {
        background: #fff;
        border-bottom: 1px solid #cccaca;
        font-family: Arial, sans-serif;
        font-size: 12px;
        position: relative;
        z-index: 30000;
    }

    .govbar:before, .govbar:after {
        content: '';
        display: table;
    }

    .govbar:after {
        clear: both;
    }

    .govbar--light {
        background: #fff;
    }

    .govbar-link, .govbar-link:visited, .govbar-link:focus, .govbar-link:hover {
        color: #222 !important;
    }

    .govbar-link:hover, .govbar-link:focus {
        background: #e6e6e6;
    }

    .govbar-logo {
        border: 0;
        display: block;
        padding: 3px 8px;
        vertical-align: middle;
    }

    .govbar-logo img {
        border: 0;
        display: block;
        height: 40px;
    }

    .govbar-links {
        display: none;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .govbar-link {
        border: 0;
        border-top: 1px solid #ddd;
        display: block;
        font-weight: bold;
        padding: 8px;
        text-decoration: none;
    }

    .govbar-more {
        font-weight: normal;
    }
}

@media only screen and (min-width: 45em) {
    .govbar-logo {
        float: left;
    }

    .govbar-links {
        display: block;
        float: right;
        line-height: 30px;
    }

    .govbar-links li {
        float: left;
    }

    .govbar-link {
        border-top: 0;
        float: left;
        min-height: 30px;
    }
}