body {
    margin: 0;
    background-color: #fff;
}

#body {
    max-width: 1100px;
    min-width: 1000px;
    margin: 15px auto;
    font-family: "OpenSans", Arial, sans-serif;
    font-size: 14px;
}

a:hover {
    text-decoration: none;
}

/* Left */
#left {
    width: 25%;
    float: left;
}

#logo {
    width: 78%;
    display: block;
    margin: 0 auto;
}

#values {
    margin-top: 20px;
    position: relative;
    cursor: pointer;
}

    #values .value {
        padding: 7px;
        text-align: center;
        background: #21345f;
        margin: 2px 0;
        color: #fff;
        font-size: 17px;
    }

    #values:hover .value, #values.open .value {
        color: #d4d4d4;
        background: #6693bc;
    }

#left #values .popout {
    height: auto;
}

#values .popout img {
    float: right;
    width: 150px;
    border: 1px solid #fff;
}

/* Search box */
#search {
    background: #ececed;
    margin: 20px 0;
    padding: 15px 0 15px 15px;
}

    #search label {
        display: inline-block;
        margin-bottom: 4px;
    }

    #search input {
        border: none;
        padding: 7px;
        font-size: 16px;
    }

        #search input[type="search"] {
            width: 65%;
        }

        #search input[type="submit"] {
            background: #fff;
            border-radius: 12px;
            padding: 7px 15px;
            margin-left: 10px;
        }

    #search select {
        border: none;
        padding: 7px;
        font-size: 16px;
        width: calc(100% - 14px);
    }

    #search input.blog-page-search {
        width: calc(100% - 14px);
    }

    #search input.blog-page-go {
        float: right;
        margin-right: 15px
    }

/* Left Side Links */
.sidelink {
    clear: both;
    padding: 15px;
    height: 70px;
    cursor: pointer;
    z-index: 2;
    position: relative;
    background: url(/img/arrows.png) no-repeat bottom right;
}

    .sidelink:hover, .sidelink.open {
        background-color: black;
        color: white;
        transition: .2s;
    }

#sidelinks .icon {
    width: 65px;
    height: 65px;
    margin-right: 20px;
    float: left;
    background-position: 0 0;
    background-repeat: no-repeat;
}

.sidelink:hover .icon, .sidelink.open .icon {
    background-position: 0 -65px !important;
}

#sidelinks h4 {
    font-family: "Cinzel", "Times New Roman", serif;
    font-size: 17px;
    margin: 0 0 5px 0;
}

#sidelinks span {
    font-size: 12px;
}

#left .popout {
    display: none;
    position: absolute;
    z-index: 3;
    height: 270px;
    width: 745px;
    background: rgba(0, 0, 0, .9);
    left: 100%;
    top: 0;
    padding: 15px 40px;
    font-family: "CrimsonText", "Times New Roman", serif;
    cursor: default;
    color: white;
}

    #left .popout a {
        color: #00AFFF;
    }

    #left .popout .close {
        background: url(/img/close.png);
        height: 15px;
        width: 15px;
        display: block;
        cursor: pointer;
        position: absolute;
        right: 15px;
    }

#sidelinks .sidelink:nth-child(2) .popout {
    top: -100px;
}

#sidelinks .sidelink:nth-child(3) .popout {
    top: -200px;
}

#left .popout.visible {
    display: block;
}

#sidelinks .popout h5 {
    margin: 0;
    font-size: 16px;
}

#sidelinks .popout .title {
    font-size: 13px;
}

#sidelinks .popout .bar {
    border-bottom: 1px solid #fff;
}

#sidelinks .popout p {
    margin-top: 0;
}

#sidelinks .slick-prev, #sidelinks .slick-next {
    width: auto;
    height: auto;
}

.popout .carousel {
    float: left;
    width: calc(75% - 40px);
    margin-top: 25px;
}

.popout .detail {
    float: left;
    width: 25%;
    margin: 10px 0 0 40px;
}

.carousel .slick-slide {
    width: 300px;
    text-align: center;
    transform: scale(.75);
}

#careers-carousel .slick-slide {
    background: none;
}

.carousel .slick-slide.slick-center {
    transform: scale(1);
    opacity: 1;
    transition: .2s;
}

.carousel .slick-slide div {
    margin: 0 auto;
    background: #000;
}

.carousel .slick-slide img {
    max-width: 180px;
    max-height: 225px;
    opacity: .5;
    padding: 3px;
}

.carousel .slick-slide a:hover img {
    padding: 0;
    border: 3px solid #fff;
}

.carousel .slick-slide.slick-center img {
    opacity: 1;
}

.detail .slick-slide {
    opacity: 0;
}

    .detail .slick-slide.slick-active {
        opacity: 1;
    }

#client-snapshots .carousel {
    width: 100%;
}

#client-snapshots .detail {
    margin: 0;
    width: 100%;
    text-align: center;
}

#client-snapshots .carousel .slick-slide img {
    max-width: 250px;
    max-height: 190px;
}

/* Main */
#main {
    width: 75%;
    float: left;
}

/* Main Navigation */
#mainnav {
    margin: 20px 40px -3px 40px;
    text-align: justify;
    font-size: 16px;
}

    #mainnav a {
        display: inline-block;
        text-decoration: none;
        color: #7b7979;
        border-bottom: 2px solid #fff;
    }

        #mainnav a:hover {
            color: #21345f;
            border-bottom: 2px solid #21345f;
        }

        #mainnav a.active {
            color: #21345f;
        }

    #mainnav:after {
        content: '';
        width: 100%;
        display: inline-block;
    }

.separator-fade {
    height: 2px;
    background: #000000;
}

.separator {
    height: 10px;
    background: #6693bc;
}


/* Content */
#content {
    min-height: 600px;
    overflow: auto;
    padding: 13px 5px 5px 5px;
}

    #content video {
        width: 100%;
        height: auto;
    }

    #content a {
        color: #2549A4;
    }

    #content img {
        vertical-align: top;
    }

    #content label {
        float: left;
        width: 150px;
        clear: left;
        margin: 4px 0;
    }

    #content input {
        float: left;
        margin: 4px 0;
    }

/* Generic Classes */
.clear {
    clear: both;
}

.center {
    text-align: center;
}

    .center a {
        color: #2549A4;
    }

.left {
    float: left !important;
}

.right {
    float: right !important;
}

/* Home */
#home-image {
    width: 100%;
}

#scholarship {
    position: absolute;
}

    #scholarship div {
        position: relative;
        left: 525px;
        top: -125px;
        background: rgba(33, 111, 89, 0.8);
        color: white;
        border-radius: 20px;
        font-size: 16px;
        font-weight: lighter;
        padding: 30px;
        box-shadow: 0 0 30px #fff;
    }

    #scholarship a {
        color: white;
    }

/* About you */
#state-chooser div {
    float: left;
    width: 45%;
    text-align: center;
    cursor: pointer;
    height: 75px;
    padding: 2.5%;
}

    #state-chooser div.selected {
        background: #ececec;
    }

    #state-chooser div:hover {
        background: #000;
        color: #fff;
        transition: .2s;
    }

#washington-map canvas {
    top: 2px !important;
}

/* Client Experience */
#client-experience .previous-button, #client-experience .next-button {
    float: left;
    width: 12.5%;
    height: 778px;
    cursor: pointer;
    text-align: center;
}

    #client-experience .previous-button:hover, #client-experience .next-button:hover {
        background: #ececec;
        transition: .2s;
    }

    #client-experience .previous-button img, #client-experience .next-button img {
        margin-top: 338px;
    }

    #client-experience .previous-button.disabled:hover, #client-experience .next-button.disabled:hover {
        background: none;
        cursor: default;
    }

    #client-experience .previous-button.disabled img, #client-experience .next-button.disabled img {
        display: none;
    }

#client-experience .page {
    float: left;
    width: 75%;
}

    #client-experience .page div div {
        border: 1px solid #000;
    }

/* Scholarship */
#scholarship-page {
    margin-left: 50px;
}

    #scholarship-page #scholarship-heading td:first-child {
        width: 150px;
        text-align: right;
        padding-right: 20px;
    }

    #scholarship-page #scholarship-details {
        border-collapse: collapse;
    }

        #scholarship-page #scholarship-details td {
            border: 1px solid #000;
            padding: 7px;
        }

            #scholarship-page #scholarship-details td:first-child {
                width: 170px;
            }

/* Bid Center */
#content .manage-nav.bid-nav a {
    width: calc(25% - 40px);
}
/* # 007ab2 */
#bid-login-form {
    width: 324px;
    margin: 25px auto;
    padding: 40px;
    border: 2px solid #6693bc;
    border-radius: 20px;
}

.bid {
    padding: 20px 0;
}

    .bid > h2 {
        padding: 0 20px;
        margin-top: 0;
    }

#manage-page .bid-head {
    cursor: pointer;
    height: 35px;
}

#users tr:first-child {
    height: 35px;
}

#users tr:last-child {
    font-size: 12px;
}

    #users tr:last-child td:first-child {
        padding-left: 20px;
    }

#manage-page .bid-head:hover td {
    background: darkgray;
}

.bid > table > tbody > tr > td:first-child, .bid > table > thead > tr > td:first-child {
    padding-left: 20px;
}

.bid > table > tbody > tr > td:last-child, .bid > table > thead > tr > td:last-child {
    padding-right: 20px;
}

.bid table, #users table {
    width: 100%;
    border-collapse: collapse;
}

    .bid table thead, #users table thead, #user-log table thead {
        background: #6693bc;
        color: #fff;
        font-weight: bold;
    }

.bid tbody table {
    width: calc(100% - 19px) !important;
    margin: 0 0 0 20px;
}

.bid input[type="image"] {
    height: 23px;
}

.bid .bc {
    text-align: center;
    width: 60px;
}

.bid .tc {
    width: 283px;
}

.bid .dc {
    width: 165px;
}

.bid .sc {
    width: 75px;
}

.manage-head img {
    margin-left: 450px;
}

#manage-page .bid .tc {
    width: 310px;
}

#manage-page.cantedit .bid .tc {
    width: 557px;
}

#projects thead {
    font-weight: bold;
}

.bid > table > tbody:nth-child(odd) td, #users > table > tbody:nth-child(odd) td, #user-log tbody tr:nth-child(odd) td {
    background: #e2e2e2;
}

.bid > table > tbody > tr:first-child, #users > table > tbody > tr:first-child {
    border-top: 1px solid black;
}

.bid > table > tbody > tr:last-child, #users > table > tbody > tr:last-child {
    border-bottom: 1px solid black;
}

.uploadifive-button {
    float: left;
    margin-top: 2px;
}

#queue {
    padding-top: 3px;
}

.uploadifive-queue-item {
    background: #C3C3C3;
}

#project-access-form table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

#project-access-form td {
    padding: 5px;
}

#project-access-form tr:nth-child(odd) td {
    background: rgb(229, 229, 229);
}

#project-access-form input {
    float: none;
}

#project-access-form label {
    float: none;
}

#project-access-form span {
    color: #54931D;
    font-size: 10px;
    margin-left: 24px;
}

.ui-datepicker {
    font-size: 80%;
}

.hidden-submit {
    display: none;
}

#change-password-form label {
    width: 180px;
}

.error {
    color: red;
}

#settings-form img {
    margin: 2px 0 0 7px;
}

#user-form div div.left {
    width: 45%;
    margin-right: 5%;
}

    #user-form div div.left:last-child {
        margin-right: 0;
        padding-left: 4%;
        border-left: 1px solid #6B6B6B;
    }

#content .dataTables_filter label, #content .dataTables_filter input {
    float: none;
}

/* Blog */
.blog-post {
    margin: 15px 40px;
}

    .blog-post .blog-text {
        width: 570px;
    }

    .blog-post h2 {
        margin-bottom: 0;
    }

        .blog-post h2 a {
            color: #000 !important;
        }

        .blog-post h2 span {
            float: right;
            font-size: 14px;
            color: #7b7979;
        }

    .blog-post h3 {
        background: 50% linear-gradient(to right, #fff, #fff, #d6c9a7) no-repeat;
        background-size: 100% 15px;
    }

    .blog-post img {
        float: right;
        border-radius: 3px;
        border: 2px solid #acaaaa;
    }

        .blog-post img:hover {
            border: 2px solid #000;
        }

    .blog-post .readmore {
        float: right;
    }

    .blog-post .blog-type {
        font-size: 11px;
        color: #7b7979;
    }

    .blog-post .clear {
        height: 10px;
    }

.blog-separator {
    border-bottom: 1px solid gray;
    margin: 15px 50px;
}

.blog-paging {
    text-align: center;
}

    .blog-paging strong, .blog-paging a {
        font-size: 15px;
        padding: 5px;
    }

.lb-dataContainer {
    display: none !important;
}

/* Contact Us */
#contact {
    background: url('/img/map.jpg') no-repeat;
    background-size: 100% auto;
    height: 600px;
}

#contact-info {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    float: left;
    border-radius: 20px;
    padding: 30px;
    font-size: 16px;
    font-weight: lighter;
    margin: 110px;
    box-shadow: 0 0 20px #000;
}

    #contact-info a {
        color: #00AFFF;
    }

    #contact-info span {
        font-style: italic;
    }

/* Manage */
#manage-page table {
    width: 100%;
}

#manage-page th {
    text-align: left;
}

#manage-page .add-button, .form .add-button {
    text-decoration: none;
    color: black;
    background: #ececec;
    padding: 15px;
    border-radius: 22px;
    height: 12px;
    width: 12px;
    display: inline-block;
    line-height: 12px;
    font-family: Arial, sans-serif;
}

    #manage-page .add-button:hover, .form .add-button:hover {
        background: #000;
        color: #fff;
    }

#content .manage-nav a {
    display: inline-block;
    width: calc(20% - 40px);
    float: left;
    text-align: center;
    color: #000;
    text-decoration: none;
    padding: 20px;
}

    #content .manage-nav a:hover {
        background: #000;
        color: #fff;
        transition: .2s;
    }

    #content .manage-nav a.active {
        background: #ececec;
    }

#uniques-edit td > img {
    width: 150px;
}

#client-snapshots td > img {
    width: 150px;
}

#our-team td > img, #careers td > img {
    max-width: 250px;
    max-height: 250px;
}

#careers-popout h4 {
    margin-top: 20px;
}

#careers-popout .career {
    width: 50%;
    float: left;
}

#careers-popout .foot-note {
    position: absolute;
    bottom: 15px;
}

.form {
    text-align: left;
}

    .form label {
        width: 120px;
        float: left;
        clear: left;
        margin-top: 5px;
    }

    .form input, .form textarea, .form select {
        margin-top: 2px;
        float: left;
    }

        .form input[type="checkbox"] {
            margin: 6px;
        }

    .form h3 {
        padding-top: 10px;
    }

        .form h3 .add-button {
            background: #b5b5b5;
        }

    .form .section {
        padding-top: 10px;
        border-top: 1px solid #aeaeae;
        margin-top: 10px;
    }

        .form .section textarea {
            clear: left;
        }

.image-notice {
    padding-top: 15px;
    color: #3F76A7;
}

/* Footer */
#footer {
    color: #7b7979;
    text-align: center;
    font-size: 12px;
    margin-top: 20px;
}

.vertical-bar {
    margin: 0 10px;
}
