﻿/* style.css */

body {
    background-color: white;
    font-family: Arial, sans-serif;
    font-size: small;
    text-align: left;
}

TEXTAREA, INPUT[type="text"] {
    /* font size, line height, face */
    font: Arial, sans-serif;
    /* useful for supporting 100% width inclusive of padding and border */
    box-sizing: border-box;
}


table {
    border-collapse: collapse;
    text-align: left;
    margin-top: 0px;
}

.tablegreybackgroundborder {
    background-color: #FDFDFD;
    padding: 20px;
    border: 1px solid;
    border-color: #888888;
}

td {
    font-family: Arial;
    padding: 2px;
    text-align: left;
    vertical-align: top;
}

.tdborder {
    font-family: Arial;
    padding: 2px;
    text-align: left;
    vertical-align: top;
    border: 1px solid;
    border-color: #888888;
    background-color: #FDFDFD;
}

.tdborderright {
    font-family: Arial;
    padding: 2px;
    text-align: right;
    vertical-align: top;
    border: 1px solid;
    border-color: #888888;
    background-color: #FDFDFD;
}

th {
    font-family: Arial;
    padding: 2px;
    text-align: left;
    vertical-align: top;
}

a:link {
    text-decoration: none;
    cursor: pointer;
}


a:visited {
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    text-decoration: underline;
    cursor: pointer;
}

a:active {
    text-decoration: underline;
    cursor: pointer;
}


.aligncenter {
    text-align: center;
}

.alignright {
    text-align: right;
}

.borderblack {
    border: 1px #444444;
    padding: 0px;
}


.borderdarkgrey {
    border: 1px #888888;
    padding: 10px;
}

.bordergrey {
    border: 1px double #CCCCCC;
    padding: 5px;
}

.greybackground {
    background-color: #F8F8F8;
    padding: 20px;
}

div#onepadding table td {
    background-color: #F8F8F8;
    padding: 1px;
}


.nowrap {
    white-space: nowrap;
}

.padding-10px {
    padding: 10px;
}

.padding-2px {
    padding: 2px;
}



.bluebutton {
    background: #024A93;
    border: 1px solid #888888;
    color: white;
    height: 32px;
}

    .bluebutton:hover {
        background: #002A83;
        border: 1px solid #000000;
        color: white;
        height: 32px;
    }

.colordarkred {
    color: darkred;
}

.colorgainsboro {
    color: gainsboro;
}

.modalbehindpopupbackground {
    background-color: gainsboro;
    filter: alpha(opacity=50);
    opacity: 0.7;
}

.modalpopupbackground {
    background-color: white;
    border: solid 1px gray;
}

/* ---------------------------- */

.navbar {
    overflow: hidden;
    background-color: #1F4D81;
    font-family: Arial, Helvetica, sans-serif;
}

    .navbar a {
        float: left;
        font-size: 16px;
        color: white;
        text-align: center;
        padding: 10px 12px;
        text-decoration: none;
    }

.dropdown {
    float: left;
    overflow: hidden;
}

    .dropdown .dropbtn {
        font-size: 16px;
        border: none;
        outline: none;
        color: white;
        padding: 10px 12px;
        background-color: inherit;
        font-family: inherit;
        margin: 0;
    }

    .navbar a:hover, .dropdown:hover .dropbtn {
        background-color: #999;
    }

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    .dropdown-content a {
        float: none;
        color: black;
        padding: 10px 12px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

        .dropdown-content a:hover {
            background-color: #ddd;
        }

.dropdown:hover .dropdown-content {
    display: block;
}

/* ---------------------------- */


.status_change {
    text-align: center;
    color: white;
    background-color: #0088FF; /* blue */
}

/* ---------------------------- */
