﻿body {
    background: white;
    font-size: .80em;
    font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;
    margin: 0px;
    padding: 0px;
    color: #333333;
}

a:link, a:visited {
    color: #696969;
}

a:hover {
    color: black;
    text-decoration: none;
}

a:active {
    color: #333333;
}

p {
    margin-bottom: 10px;
    line-height: 1.6em;
}

/* Graphical drop down list -------------------------*/
.dropdown {
    position: relative;
    display: inline-block;
    border: 1px solid black;
    white-space: nowrap;
}

    .dropdown a {
        text-decoration: none;
        color: black;
        display: inline-block;
        min-width: 140px;
    }

.dropdown-content {
    display: block !important;
    border: 1px solid black;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 3px 3px;
    z-index: 100;
    max-height: 160px;
    overflow-y: auto;
}

    .dropdown-content a {
        text-decoration: none;
        color: black;
        display: inline-block;
        min-width: 140px;
    }

.dropdown-listitem {
    display: block;
}

    .dropdown-listitem:hover {
        background-color: lightgray;
    }

textarea, input, select {
    font-size: 10pt;
    font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    color: #333333;
}

    input[type=submit], button {
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #7892c2), color-stop(1, #336699));
        background: -moz-linear-gradient(top, #7892c2 5%, #336699 100%);
        background: -webkit-linear-gradient(top, #7892c2 5%, #336699 100%);
        background: -o-linear-gradient(top, #7892c2 5%, #336699 100%);
        background: -ms-linear-gradient(top, #7892c2 5%, #336699 100%);
        background: linear-gradient(to bottom, #7892c2 5%, #336699 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7892c2', endColorstr='#336699',GradientType=0);
        background-color: #7892c2;
        -moz-border-radius: 22px;
        -webkit-border-radius: 22px;
        border-radius: 22px;
        border: 2px solid #336699;
        display: inline-block;
        cursor: pointer;
        color: #ffffff;
        font-family: Arial;
        font-size: 12px;
        padding: 4px 12px;
        text-decoration: none;
        text-shadow: 0px 0px 5px #283966;
    }

        input[type=submit]:hover, button:hover {
            background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #336699), color-stop(1, #7892c2));
            background: -moz-linear-gradient(top, #336699 5%, #7892c2 100%);
            background: -webkit-linear-gradient(top, #336699 5%, #7892c2 100%);
            background: -o-linear-gradient(top, #336699 5%, #7892c2 100%);
            background: -ms-linear-gradient(top, #336699 5%, #7892c2 100%);
            background: linear-gradient(to bottom, #336699 5%, #7892c2 100%);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#336699', endColorstr='#7892c2',GradientType=0);
            background-color: #336699;
        }

        input[type=submit]:active, button:active {
            position: relative;
            top: 1px;
        }

/* HEADINGS   
----------------------------------------------------------*/

h1, h2, h3, h4, h5, h6 {
    font-size: 1.5em;
    color: #333333;
    text-transform: none;
    font-weight: 200;
    margin-bottom: 0px;
}

h1 {
    font-size: 1.6em;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

h2 {
    font-size: 1.5em;
    font-weight: 600;
}

h3 {
    font-size: 1.2em;
}

h4 {
    font-size: 1.1em;
}

h5, h6 {
    font-size: 1em;
}

/* this rule styles <h1> and <h2> tags that are the 
first child of the left and right table columns */
.rightColumn > h1, .rightColumn > h2, .leftColumn > h1, .leftColumn > h2 {
    margin-top: 0px;
}

/* Modal popup
    -----------------------------------------------------*/
.modalBackground {
    background-color: Black;
    filter: alpha(opacity=60);
    opacity: 0.6;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.modalPopup {
    background-color: #FFFFFF;
    border: 3px solid #345787;
    border-radius: 12px;
    padding: 0px;
    margin: 20px 2px 20px 2px;
    text-align: left;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

    .modalPopup .header {
        background-color: #345787;
        height: 30px;
        color: White;
        line-height: 30px;
        text-align: center;
        font-weight: bold;
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .modalPopup .PopupBody {
        min-height: 50px;
        font-weight: normal;
        max-height: 100vh;
        max-width: 100vw;
        overflow-x: auto;
        overflow-y: auto;
        color: black;
        display: inline;
    }

    .modalPopup .footer {
        padding: 6px;
        text-align: center;
    }


/* Wizard & Help Popup
        -------------------------------    */
.wizardPopup {
    background-color: #FFFFFF;
    border: 3px solid #D17239;
    border-radius: 12px;
    padding: 0px;
    margin: 20px;
}

    .wizardPopup .header {
        background-color: #D17239;
        height: 30px;
        color: White;
        line-height: 30px;
        text-align: center;
        font-weight: bold;
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .wizardPopup .PopupBody {
        min-height: 50px;
        font-weight: normal;
        max-height: 100vh;
        max-width: 100vw;
        overflow-x: auto;
        overflow-y: auto;
        color: black;
        display: inline;
    }

.Help {
    min-width: 350px;
}

.HelpBody {
    max-height: calc(100vh - 150px);
    overflow: auto;
    min-height: 100px;
    margin: 0px 0px 4px 5px
}

@media screen and (min-width:600px) {
    .Help {
        min-width: 550px;
    }
}

/* Scroll bars --------------------*/
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: lightgrey;
    border-radius: 6px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: grey;
    }

/* PRIMARY LAYOUT ELEMENTS   
----------------------------------------------------------*/
.page {
    background-color: white;
    margin: 0px auto 0px auto;
    border: 0px solid #496077;
    /*min-height: 600px;*/
}

.pageWrap {
    margin: 0px auto 0px auto;
    border: 0px solid #496077;
}

    .pageWrap div {
        display: inline-block;
        vertical-align: top;
    }

.header {
    position: relative;
    margin: 0px;
    padding: 0px;
    width: 100%;
}

    .header h1 {
        font-weight: 700;
        margin: 0px;
        padding: 0px 0px 0px 20px;
        color: #f9f9f9;
        border: none;
        line-height: 2em;
        font-size: 2em;
    }

.main {
    padding: 0px 8px;
    margin: 12px 8px 8px 6px;
    min-height: 600px;
}

.leftCol {
    padding: 6px 0px;
    margin: 12px 8px 8px 8px;
    width: 200px;
    min-height: 400px;
}

.footer {
    color: #4e5766;
    padding: 8px 0px 0px 0px;
    margin: 0px auto;
    text-align: center;
    line-height: normal;
}

.DeviceBox {
    width: 160px;
    margin: 3px;
    border: 3px solid #345787;
    border-radius: 12px;
    text-align: left;
    padding: 0px;
    background-color: #F1F1F2;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 70%);
}

    .DeviceBox .DeviceHead {
        background-color: #345787;
        height: 18px;
        color: White;
        align-items: center;
        justify-content: center;
        display: flex;
    }

    .DeviceBox .header2 {
        background-color: #345787;
        height: 18px;
        color: White;
        align-items: center;
        justify-content: center;
        display: flex;
    }

    .DeviceBox .footer {
        background-color: #345787;
        height: 18px;
        color: White;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0px;
    }

    .DeviceBox .DeviceBody {
        background-color: #F1F1F2;
        padding: 0px;
        display: flex;
        vertical-align: central;
        margin: 5px;
        justify-content: center;
        width: 95%;
    }


.Loading {
    position: fixed;
    left: 50%;
    top: 25%;
    background-color: black;
    z-index: 100;
    height: 50px;
    width: 100px;
    margin-left: -75px;
    line-height: 50px;
    text-align: center;
    font-weight: bold;
    border-radius: 10px;
    color: white;
    display: flex;
    justify-content: space-around;
    padding-left: 25px;
    padding-right: 25px;
}
/* TAB MENU   
----------------------------------------------------------*/

div.hideSkiplink {
    width: 100%;
}

div.menu {
    padding: 1px 0px 1px 1px;
}

    div.menu ul {
        list-style: none;
        margin: 0px;
        padding: 0px;
        width: auto;
        z-index: 10;
    }

        /*inactive*/
        div.menu ul li a, div.menu ul li a:visited {
            background-color: #6781a3;
            border: 1px #09315d solid;
            color: #dde4ec;
            display: block;
            line-height: 1.35em;
            padding: 3px 10px;
            text-decoration: none;
            white-space: nowrap;
            vertical-align: text-top;
            font-size: 13px;
            font-weight: 600;
            min-width: 100px;
        }

            div.menu ul li a:hover {
                background-color: #465c71;
                color: white;
                text-decoration: none;
            }

            /*On click*/
            div.menu ul li a:active {
                background-color: #465c71;
                color: #cfdbe6;
                text-decoration: none;
            }



.menu ul li ul {
    display: none;
}

.menu a.static.selected {
    background-color: #345787 !important;
    color: white !important;
    text-decoration: none !important;
}

/* FORM ELEMENTS   
----------------------------------------------------------*/

fieldset {
    margin: 1em 0px;
    padding: 1em;
    border: 1px solid #ccc;
}

    fieldset p {
        margin: 2px 12px 10px 10px;
    }

    fieldset.login label, fieldset.register label, fieldset.changePassword label {
        display: block;
    }

    fieldset label.inline {
        display: inline;
    }

legend {
    font-size: 1.1em;
    font-weight: 600;
    padding: 2px 4px 8px 4px;
}

div.accountInfo {
    width: 42%;
}

.clear {
    clear: both;
}

.title {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.loginDisplay {
    font-size: 1.1em;
    display: block;
    color: White;
    vertical-align: text-top;
}

    .loginDisplay a:link {
        color: white;
    }

    .loginDisplay a:visited {
        color: white;
    }

    .loginDisplay a:hover {
        color: white;
    }

.failureNotification {
    font-size: 1.2em;
    color: Red;
}

.bold {
    font-weight: bold;
}

.TableHeader {
    font-size: 10pt;
    font-family: verdana, Tahoma, sans-serif;
    font-weight: bold;
    text-decoration: none;
    color: #FFFFFF;
    background-color: #345787;
    text-align: center;
}

.ColHeader {
    font-size: 8pt;
    font-family: verdana, Tahoma, sans-serif;
    font-weight: bold;
    text-decoration: none;
    color: Black;
    background-color: #dde4ec;
    height: 16px;
    text-align: center;
}

.RowHeader {
    font-size: 8pt;
    font-family: verdana, Tahoma, sans-serif;
    font-weight: bold;
    text-decoration: none;
    color: Black;
    background-color: #dde4ec;
    height: 16px;
    text-align: right;
}

.Greenbar {
    background-color: #ffffe0;
}

.list {
    border: 1px solid #CCC;
    list-style-type: none;
    margin: 0px;
    background-color: #AAA;
    font-size: 8pt;
    font-family: verdana, Tahoma, sans-serif;
    width: 300px;
    text-align: left;
    cursor: pointer;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
}

ul.list li {
    padding: 2px 5px;
    width: 300px;
}

.listitem {
    background-color: #EEE;
    color: #111;
    width: 300px;
}

.hoverlistitem {
    background-color: #555;
    color: #EEE;
}

/* Generic Tables */
.divTable {
    display: table;
}

.divTableRow {
    display: table-row;
}

.divTableCell {
    display: table-cell;
    vertical-align: middle;
    padding: 3px;
}

.divTableHeading {
    display: table-caption;
    font-size: 10pt;
    font-family: verdana, Tahoma, sans-serif;
    font-weight: bold;
    text-decoration: none;
    color: #FFFFFF;
    background-color: #345787;
    text-align: center;
}

.divColumnHeading {
    display: table-row;
    font-size: 8pt;
    font-family: verdana, Tahoma, sans-serif;
    font-weight: bold;
    text-decoration: none;
    color: Black;
    background-color: #dde4ec;
    height: 16px;
    text-align: center;
}

.divRowHeader {
    display: table-cell;
    padding: 3px;
    font-size: 8pt;
    font-family: verdana, Tahoma, sans-serif;
    font-weight: bold;
    text-decoration: none;
    color: Black;
    background-color: #dde4ec;
    height: 16px;
    text-align: right;
    vertical-align: middle;
}

.SliderRail {
    position: relative;
    background-image: url(/common/UserControls/Slider/rail.gif);
    background-repeat: no-repeat;
    height: 16px;
    width: 100px;
}

.SliderHandle {
    position: absolute;
    width: 16px;
    height: 16px;
}

.SliderValue {
    text-align: center;
    font-size: 9px;
}

.NoCaret {
    color: transparent;
    caret-color: transparent;
}

/* REFERENCE BUTTONS
----------------------------------------------------------*/
.Ribbon {
    background-color: #dfdfdf;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-height: 38px;
    text-align: left;
}

.RibbonItem {
    display: inline-flex;
    color: #777777;
    font-family: arial;
    font-size: 11px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 5px;
}

    .RibbonItem select {
        color: #777777;
        font-family: arial;
        font-size: 11px;
        font-weight: bold;
        height: 18px;
    }

    .RibbonItem input[type=text] {
        color: #777777;
        font-family: arial;
        font-size: 11px;
        font-weight: bold;
        height: 19px;
    }

.Group {
    -moz-border-radius: 13px;
    -webkit-border-radius: 13px;
    border-radius: 13px;
    border: 1px solid #dcdcdc;
    width: auto;
    overflow: visible;
    display: inline-flex;
    color: #777777;
    font-family: arial;
    font-size: 10px;
    font-weight: bold;
    text-decoration: none;
    background-color: white;
    height: 26px;
    margin-left: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
}

    .Group a:link {
        text-decoration: none;
    }

.GroupInnerLeft {
    padding: 7px 4px 0px 5px;
}

.GroupInnerRight {
    padding: 6px 5px 0px 0px;
}

.GroupDivider {
    width: auto;
    display: inline-flex;
    margin-top: 10px;
    margin-left: 5px;
}

.SmallGroup {
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    border: 1px solid darkgrey;
    width: auto;
    overflow: visible;
    display: inline-flex;
    color: #777777;
    font-family: arial;
    font-size: 10px;
    font-weight: bold;
    text-decoration: none;
    background-color: white;
    margin-right: 5px;
    margin-bottom: 2px;
    padding-top: 5px;
    padding-left: 3px;
}

.SmallGroupSelect {
    color: #777777;
    font-family: arial;
    font-size: 11px;
    font-weight: normal;
    height: 18px;
}

/* This imageless css button was generated by CSSButtonGenerator.com */
/*Header*/
.Tab .ajax__tab_header {
    color: #345787 !important;
    font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    background-color: #ffffff !important;
    margin-left: 0px !important;
    background-image: url("/common/Styles/tab_header.gif") !important;
    /*background-image: none !important;*/
}

.Tab .ajax__tab_header_verticalleft {
    color: #345787 !important;
    font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    background-color: #ffffff !important;
    margin-left: 0px !important;
}
/*Body*/
.Tab .ajax__tab_body {
    border: 2px solid #345787 !important;
    padding-top: 0px !important;
}

.Tab .ajax__tab_body_verticalleft {
    border: 2px solid #345787 !important;
}

.Tab .ajax__tab {
    height: 26px !important;
}
/*Tab Active*/
.Tab .ajax__tab_active .ajax__tab_tab {
    color: #ffffff !important;
    background: url("/common/Styles/tab_active.gif") repeat-x !important;
    height: 24px !important;
}

.Tab .ajax__tab_active .ajax__tab_inner {
    color: #ffffff !important;
    /*background: url("/common/Styles/tab_left_active.gif") no-repeat left !important; /* COMMENT OUT TO REMOVE GRAPHIC */
    background: none !important; /*UNCOMMENT TO REMOVE GRAPHIC*/
    padding-left: 0px !important; /*CHANGE TO 0px IF REMOVING GRAPHIC */
    height: 24px !important;
}

.Tab .ajax__tab_active .ajax__tab_outer {
    color: #ffffff !important;
    /*background:url("/common/Styles/tab_right_active.gif") no-repeat right !important; /* COMMENT OUT TO REMOVE GRAPHIC */
    background: none !important; /*UNCOMMENT TO REMOVE GRAPHIC*/
    padding-right: 0px !important;
    margin-right: 1px !important;
    margin-left: 5px !important;
    height: 24px !important;
}
/*Tab Hover*/
.Tab .ajax__tab_hover .ajax__tab_tab {
    color: white !important;
    background: url("/common/Styles/tab_hover.gif") repeat-x !important;
    height: 24px !important;
}

.Tab .ajax__tab_hover .ajax__tab_inner {
    color: #000000 !important;
    /*background:url("/common/Styles/tab_left_hover.gif") no-repeat left !important; /* COMMENT OUT TO REMOVE GRAPHIC */
    background: none !important; /*UNCOMMENT TO REMOVE GRAPHIC*/
    padding-left: 0px !important; /*CHANGE TO 0px IF REMOVING GRAPHIC */
}

.Tab .ajax__tab_hover .ajax__tab_outer {
    color: #000000 !important;
    /*background:url("/common/Styles/tab_right_hover.gif") no-repeat right !important; /* COMMENT OUT TO REMOVE GRAPHIC */
    background: none !important; /*UNCOMMENT TO REMOVE GRAPHIC*/
    padding-right: 0px !important;
    margin-right: 1px !important;
    margin-left: 5px !important;
    height: 24px !important;
}
/*Tab Inactive*/
.Tab .ajax__tab_tab {
    color: #dde4ec !important;
    background: url("/common/Styles/tab_inactive.gif") repeat-x !important;
    height: 24px !important;
}

.Tab .ajax__tab_inner {
    color: #000000 !important;
    /*background:url("/common/Styles/tab_left_inactive.gif") no-repeat left !important; /* COMMENT OUT TO REMOVE GRAPHIC */
    background: none !important; /*UNCOMMENT TO REMOVE GRAPHIC*/
    padding-left: 0px !important; /*CHANGE TO 0px IF REMOVING GRAPHIC */
    height: 24px !important;
}

.Tab .ajax__tab_outer {
    color: #000000 !important;
    /*background:url("/common/Styles/tab_right_inactive.gif") no-repeat right !important; /* COMMENT OUT TO REMOVE GRAPHIC */
    background: none !important; /*UNCOMMENT TO REMOVE GRAPHIC*/
    padding-right: 0px !important;
    margin-right: 1px !important;
    margin-left: 5px !important;
    height: 24px !important;
}

/*Background Image*/
#bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    display: flex;
}

    #bg img {
        width: 100vw;
        height: auto;
        margin: auto;
        display: block;
    }
