﻿/* Move down content because we have a fixed navbar that is 50px tall */
body {
    /*padding-top: 50px;
    padding-bottom: 20px;*/
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
/*input[type="text"],
input[type="password"] {
    max-width: 280px;
}*/

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .jumbotron {
        margin-top: 20px;
    }

    .body-content {
        padding: 0;
    }

    #branding img {
        width: 20%;
        height: auto;
        max-width: 308px;
    }
}

@media screen and (max-width: 767px) {
    #branding img {
        width: 30%;
        height: auto;
        max-width: 308px;
    }

}

footer {
    display: block;
    background-color: #1E3A62;
    color: white;
    padding-top: 1em;
    padding-bottom: 1em;
}

    footer a {
        color: white;
    }

foooter a:hover,
a:focus {
    color: white;
    text-decoration: underline;
}

footer a:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
}

header, #branding, #branding h1, #branding h1 a {
    height: auto;
    width: auto;
}

#skiptocontent {
    border-right: 0px solid #eee !important;
}

.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
    background-color: #EFF3FB;
}

.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
    background-color: #ffffcc;
}

table tbody tr.odd {
    background-color: #EFF3FB;
}

table tbody tr.even {
    background-color: #ffffcc;
}


