﻿body {
    height: 100vh;
}

/* HEADER */

.header-section {
    /*display: none;*/
    position: relative;
    min-height: 100px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    background-color: #FFFFFF;
}

@media (min-width: 768px) {
    .header-section {
        border-radius: 4px;
    }
}

.header-logo {
    background-image: url(../images/citizen-logo.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    height: 105px;
    width: 250px;
    float: left;
    /*padding: 30px 30px 30px 30px;*/
}

.header-login {
    clear: both;
    height: 70px;
}

.header-links {
    float: right;
}

.link-item {
    float: left;
    padding: 5px 5px 5px 5px;
}

/* BODY */

.body-section {
    background-color: #666666;
    color: #FFFFFF;
    font-weight: bold;
    overflow: auto;
    padding: 5px 5px 55px 5px;
}

/* TABLE */
.table-header {
    background-color: #000000;
    color: #FFFFFF;
    font-weight: bold;
}

.table-line{

}

.line-main{
    background-color: #DDDDDD;
    color: #000000;
    font-weight: normal;
}

.line-alternate {
    background-color: #AAAAAA;
    color: #000000;
    font-weight: normal;
}

/* INDIVIDUAL SUB SECTIONS */
.search-section {
    background-color: #999999;
    color: #000000;
    margin: auto;
    /*width: 80%;*/
    padding: 5px 10px 5px 10px;
}

.login-section {
    background-color: #CCCCCC;
    color: #000000;
    width: 100%;
    padding: 5px 10px 5px 10px;
}

.form-entry {
    background-color: #CCCCCC;
    color: #000000;
    width: 100%;
    padding: 5px 10px 5px 10px;
}

.footer-section{
    background-color: #000000;
    color: #FFFFFF;
    position: fixed;
    bottom: 0;
    left: 0;
    height: 50px;
    width: 100%;
    margin-top: -50px;
    clear: both;
    overflow: hidden;
    z-index: 9999;
}

.container-body-height{
    position: relative;
    min-height: 100vh;
}

.footer-text{
    padding: 5px 5px 5px 5px;
}

/* GENERAL ITEMS */

.float-left{
    float: left;
}

.clear-both{
    clear: both;
}

.width-hundred{
    width: 100px;
}

.width-hundredhalf{
    width: 150px;
}

.width-hundreddbl {
    width: 200px;
}

.width-hundredtrp {
    width: 300px;
}

.width-hundredqud {
    width: 400px;
}

.padding-five {
    padding: 5px 5px 5px 5px;
}