﻿
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(0,0,0,.2);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,.3);
    border-radius: 6px;
}

::-webkit-scrollbar-corner {
    background: rgba(0,0,0,0);
}

html {
    padding: 0;
    font-family: Calibri, Fallback, sans-serif;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    height: 100%;
    overflow: auto;
}

body {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    margin: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.blueShade {
    background-image: radial-gradient(top right, #2FBDFF, black);
    background: -ms-radial-gradient(top right, #2FBDFF, black); /* IE */
    background: -webkit-radial-gradient(top right, #2FBDFF, black); /* Safari 5.1 to 6.0 */
    background: -o-radial-gradient(top right, #2FBDFF, black); /* For Opera 11.6 to 12.0 */
    background: -moz-radial-gradient(top right, #2FBDFF, black); /* For Firefox 3.6 to 15 */
    background: radial-gradient(top right, #2FBDFF, black); /* Standard syntax */
}

.topBar {
    position: absolute;
    top: 5px;
    margin: 0;
}

.hStack {
    position: absolute;
    text-align: center;
}

    .hStack * {
        display: inline-block;
        vertical-align: middle;
    }

.vStack {
    position: absolute;
    text-align: left;
}

    .vStack * {
        display: block;
        vertical-align: middle;
    }

.paramBox {
    position: relative;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    margin: 2px;
    min-width: 120px;
    vertical-align: top;
}

    .paramBox * {
        display: block;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        max-width: 160px;
    }

    .paramBox.found, .paramBox.found * {
        cursor: pointer;
    }

        .paramBox.found:hover {
            box-shadow: inset 0px 1px 0px rgba(255,255,255,.3), 0 0 2px 2px rgba(17, 125, 0, 0.30);
        }

.r {
    background-color: rgba(255, 0, 0, 0.4);
}

.g {
    background-color: rgba(0, 186, 0, 0.40);
}

.o {
    background-color: rgba(186, 74, 0, 0.40);
}

.b {
    background-color: rgba(47, 134, 255, 0.40);
}

.gr {
    background-color: rgba(103, 103, 103, 0.40);
}

label {
    color: #4c4c4c;
    padding: 0;
    margin: 2px;
    cursor: default;
}

    label.noRowsFound {
        position: absolute;
        top: 40px;
        display: none;
        left: 50%;
        transform: translateX(-50%);
        font-size: 18px;
    }

p {
    color: #4c4c4c;
    padding: 0;
    margin: 0;
    cursor: default;
}

    p.light {
        color: #e5e5e5;
        text-shadow: 0px 0px 3px black;
    }

.red {
    color: rgba(243, 0, 0, 1);
}
.orange {
    color: rgba(240, 100, 0, 1);
}
.yellow {
    color: rgb(220, 188, 0);
}
.green {
    color: rgb(17 160 0);
}

.blue {
    color: rgba(0, 117, 182, 1);
}
.redNotArmed {
    color: rgb(159, 0, 0);
}

.orangeNotArmed {
    color: rgb(190, 80, 30);
}

.yellowNotArmed {
    color: rgb(155, 133, 0);
}

.greenNotArmed {
    color: rgb(14, 99, 0);
}

.gray {
    color: rgba(78, 78, 78,1);
}


#alerts {
    position: fixed;
    top: 5px;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

    #alerts label {
        border: 1px solid #8b8957;
        color: black;
        border-radius: 5px;
        padding: 2px 5px;
        margin: auto;
        background-color: #ebe78d;
        display: table;
    }

        #alerts label.Success {
            border: 1px solid #598b57;
            background-color: #95eb8d;
        }

        #alerts label.Error {
            border: 1px solid #8b5757;
            background-color: #eb8d8d;
        }

.hidden { /*Used for hidden columns in datatables*/
    display: none;
}

.ExportRow {
    width: 100%;
}

    .ExportRow * {
        display: inline-block;
        vertical-align: middle;
    }
.busyIndicator {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(128, 128, 128, 0.43);
    border-radius: 5px;
}

    .busyIndicator.trans {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.00);
        border-radius: 5px;
    }

    .busyIndicator > div {
        position: absolute;
        width: 80px;
        height: 40px;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
    }

        .busyIndicator > div > div {
            background-color: #2FBDFF;
            border: 1px solid #1e6687;
            float: left;
            height: 100%;
            width: 8px;
            margin-left: 3px;
            opacity: 0.1;
            animation-name: bounceG;
            -o-animation-name: bounceG;
            -ms-animation-name: bounceG;
            -webkit-animation-name: bounceG;
            -moz-animation-name: bounceG;
            animation-duration: 2s;
            -o-animation-duration: 2s;
            -ms-animation-duration: 2s;
            -webkit-animation-duration: 2s;
            -moz-animation-duration: 2s;
            animation-iteration-count: infinite;
            -o-animation-iteration-count: infinite;
            -ms-animation-iteration-count: infinite;
            -webkit-animation-iteration-count: infinite;
            -moz-animation-iteration-count: infinite;
            animation-direction: normal;
            -o-animation-direction: normal;
            -ms-animation-direction: normal;
            -webkit-animation-direction: normal;
            -moz-animation-direction: normal;
            -o-transform: scale(0.7);
            -ms-transform: scale(0.7);
            -webkit-transform: scale(0.7);
            -moz-transform: scale(0.7);
            transform: scale(0.7);
        }

            .busyIndicator > div > div:nth-child(1) {
                animation-delay: 0s;
                -o-animation-delay: 0s;
                -ms-animation-delay: 0s;
                -webkit-animation-delay: 0s;
                -moz-animation-delay: 0s;
            }

            .busyIndicator > div > div:nth-child(2) {
                animation-delay: 0.12s;
                -o-animation-delay: 0.12s;
                -ms-animation-delay: 0.12s;
                -webkit-animation-delay: 0.12s;
                -moz-animation-delay: 0.12s;
            }

            .busyIndicator > div > div:nth-child(3) {
                animation-delay: 0.24s;
                -o-animation-delay: 0.24s;
                -ms-animation-delay: 0.24s;
                -webkit-animation-delay: 0.24s;
                -moz-animation-delay: 0.24s;
            }

            .busyIndicator > div > div:nth-child(4) {
                animation-delay: 0.36s;
                -o-animation-delay: 0.36s;
                -ms-animation-delay: 0.36s;
                -webkit-animation-delay: 0.36s;
                -moz-animation-delay: 0.36s;
            }

            .busyIndicator > div > div:nth-child(5) {
                animation-delay: 0.48s;
                -o-animation-delay: 0.48s;
                -ms-animation-delay: 0.48s;
                -webkit-animation-delay: 0.48s;
                -moz-animation-delay: 0.48s;
            }

            .busyIndicator > div > div:nth-child(6) {
                animation-delay: 0.6s;
                -o-animation-delay: 0.6s;
                -ms-animation-delay: 0.6s;
                -webkit-animation-delay: 0.6s;
                -moz-animation-delay: 0.6s;
            }



@keyframes bounceG {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0.6);
        opacity: 0.1;
    }
}

@-o-keyframes bounceG {
    0% {
        -o-transform: scale(1);
        opacity: 1;
    }

    100% {
        -o-transform: scale(0.6);
        opacity: 0.1;
    }
}

@-ms-keyframes bounceG {
    0% {
        -ms-transform: scale(1);
        opacity: 1;
    }

    100% {
        -ms-transform: scale(0.6);
        opacity: 0.1;
    }
}

@-webkit-keyframes bounceG {
    0% {
        -webkit-transform: scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(0.6);
        opacity: 0.1;
    }
}

@-moz-keyframes bounceG {
    0% {
        -moz-transform: scale(1);
        opacity: 1;
    }

    100% {
        -moz-transform: scale(0.6);
        opacity: 0.1;
    }
}
.context {
    left: 500px;
    top: 300px;
}

    .context > div {
        padding: 8px;
        border: 1px solid rgba(0, 0, 0, 0.00);
    }

        .context > div:hover {
            background-color: rgba(50, 190, 255, 0.30);
            border: 1px solid rgba(50, 190, 255, 0.75);
            border-radius: 2px;
        }

        .context > div:active {
            background-color: rgba(50, 190, 255, 0.50);
            border: 1px solid #1f77a0;
            border-radius: 2px;
        }

        .context > div * {
            display: inline-block;
            vertical-align: middle;
        }

    .context img {
        width: 15px;
        margin-right: 5px;
    }

.link {
    cursor: pointer;
    color: blue;
    text-decoration: underline
}
.tabs {
    /*height: 98%;
    height: calc(100% - 10px);
    margin: 5px;*/
    left: 5px;
    right: 5px;
    position: absolute;
    overflow-y: auto;
}

    .tabs p {
        margin: 0px;
        padding: 5px;
        border: 1px solid rgba(0, 0, 0, 0.00);
    }

        .tabs p:hover {
            background-color: rgba(50, 190, 255, 0.30);
            border: 1px solid rgba(50, 190, 255, 0.75);
            border-radius: 2px;
        }

        .tabs p:active, .tabs .selected {
            background-color: rgba(50, 190, 255, 0.50);
            border: 1px solid #1f77a0;
            border-radius: 2px;
        }

.tabsTop {
    /*margin: 5px;*/
    left: 5px;
    position: absolute;
}

    .tabsTop p {
        margin: 0px;
        padding: 1px 5px 1px 5px;
        border: 1px solid rgba(0, 0, 0, 0.00);
        display: inline-block;
    }

        .tabsTop p:hover {
            background-color: rgba(50, 190, 255, 0.30);
            border: 1px solid rgba(50, 190, 255, 0.75);
            border-radius: 2px;
        }

        .tabsTop p:active, .tabsTop .selected {
            background-color: rgba(50, 190, 255, 0.50);
            border: 1px solid #1f77a0;
            border-radius: 2px;
        }

.tabArea {
    background-image: linear-gradient(to bottom,#ffffff,#dddddd,#ffffff);
    background: -webkit-linear-gradient(top,#ffffff,#dddddd,#ffffff);
    background: -o-linear-gradient(to bottom, #ffffff,#dddddd,#ffffff);
    background: -moz-linear-gradient(to bottom, #ffffff,#dddddd,#ffffff);
    background: linear-gradient(to bottom, #e2e2e2,#c2c2c2,#e2e2e2);
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    /*height: 98%;
    height: calc(100% - 10px);*/
}

.box1 {
    border-radius: 2px;
    box-shadow: 0px 0px 5px black;
    background-image: linear-gradient(to bottom,#ffffff,#dddddd,#ffffff);
    background: -webkit-linear-gradient(top,#ffffff,#dddddd,#ffffff);
    background: -o-linear-gradient(to bottom, #ffffff,#dddddd,#ffffff);
    background: -moz-linear-gradient(to bottom, #ffffff,#dddddd,#ffffff);
    background: linear-gradient(to bottom, #ffffff,#dddddd,#ffffff);
    padding: 0;
    margin: 0;
    right: 0;
    position: absolute;
}

.info label:nth-child(2n) {
    color: rgb(18, 105, 143);
    -webkit-touch-callout: default;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    cursor: text;
    overflow: hidden;
    white-space: nowrap;
}

.form {
    box-sizing: border-box;
    padding: 0;
    margin: 0 0 0 2px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    display: inline-block;
    vertical-align: top;
}

    .form * {
        box-sizing: border-box;
    }

    .form > p {
        margin: 3px;
        vertical-align: middle;
        position: relative;
    }

    .form.bordered > p {
        /*border-bottom: 1px solid rgba(0, 0, 0, 0.1);*/
    }

    .form > p > label:first-child {
        padding: 0;
        margin: 0 2px 0 0;
        width: 98px;
        display: inline-block;
        vertical-align: middle;
        text-align: right;
    }

    .form.bordered > p > label:first-child {
        width: 155px;
    }

    .form > p > input, .form > p > textarea {
        width: calc(100% - 105px);
        padding: 0;
        margin: 0;
        vertical-align: middle;
    }

    .form.bordered > p > input {
        width: calc(100% - 162px);
    }

    .form > p > input[readonly], .form > p > textarea[readonly] {
        color: rgb(18, 105, 143);
        background-color: rgba(0, 0, 0, 0.00);
        border: 1px solid rgba(0, 0, 0, 0.1);
        cursor: text;
    }

    .form.checkOptions p:first-child {
        text-align: center;
        font-weight: bold;
        font-size: 16px;
    }

    .form.checkOptions > p > label {
        width: calc(100% - 25px);
        vertical-align: middle;
        text-align: left;
        margin-left: 20px;
    }

        .form.checkOptions > p > label > input {
            vertical-align: middle;
            margin-right: 5px;
        }

.checkedList {
    height: 150px;
    overflow: auto;
    background: white;
    border: 1px solid rgb(186, 186, 186);
    border-radius: 5px;
    display: block;
    margin: 5px 5px 5px 50px;
}

    .checkedList > label {
        display: block;
        margin: 2px 5px 2px 5px;
    }

        .checkedList > label:hover {
            background-color: rgb(196, 238, 255);
        }

input:not([type='submit']):not([type='button']), textarea {
    border: 1px solid rgb(186, 186, 186);
    padding: 2px;
    margin: 0;
    border-radius: 3px;
}
input[type='checkbox'] {
    height: 14px;
    width: 18px;
    vertical-align: sub;
}

textarea {
    resize: none;
    overflow-y: auto;
    white-space: pre-wrap;
}

    input:not([type='submit']):not([type='button']):enabled:hover, textarea:enabled:hover {
        box-shadow: 0 0 5px 0px rgba(25, 156, 213, .6);
        background-color: rgb(241, 251, 255);
    }

    input:not([type='submit']):not([type='button']):focus, textarea:focus {
        background-color: rgb(223, 245, 255);
    }

input[type=text] {
    cursor: text;
}

input:not([type='submit']):not([type='button']):not(.ddTime):not(.ddIntUpDown):not(.ddPrice):not(.ui-spinner-input), textarea {
    border: 1px solid rgb(186, 186, 186);
    /*padding: 4px 4px 4px 4px;*/
    margin: 0;
    border-radius: 3px;
}

    input:not([type='submit']):not([type='button']):enabled:hover, textarea:enabled:hover {
        box-shadow: 0 0 5px 0px rgba(25, 156, 213, .6);
        background-color: rgb(241, 251, 255);
    }

    input:not([type='submit']):not([type='button']):focus, textarea:focus {
        background-color: rgb(223, 245, 255);
    }

#bodyRoot select + span {
    padding-top: 3px;
    padding-right: 4px;
    padding-bottom: 3px;
    padding-left: 4px;
}

#bodyRoot .ui-spinner-input {
    padding: 0;
}
input[type=submit], input[type=button] {
    background: rgba(25, 156, 213, 0.99);
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
    background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
    background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
    background-repeat: no-repeat;
    background-position: 97% 50%;
    color: whitesmoke;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    border-radius: 2px;
    box-shadow: inset 0px 1px 0px rgba(255,255,255,.3), 0 2px 4px rgba(0,0,0,.5);
    border: 1px solid #05549c;
    padding: 0px;
    height: 22px;
    width: 40px;
    display: inline-block;
    vertical-align: middle;
    margin: 2px;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    input[type=submit].round, input[type=button].round {
        border-radius: 11px;
        height: 22px;
        width: 22px;
    }

    input[type=submit]:not(:enabled), input[type=button]:not(:enabled) {
        background-color: rgb(169, 194, 205);
    }

    input[type=submit].c, input[type=button].c {
        background-position: 50% 50%;
    }

    input[type=submit]:enabled:hover, input[type=button]:enabled:hover {
        box-shadow: inset 0px 1px 0px rgba(255,255,255,.3), 0 0 2px 2px rgba(0,144,224,.5);
    }

    input[type=submit]:enabled:active, input[type=button]:enabled:active {
        color: #bbbbbb;
        background-position: 97% 70%;
        box-shadow: inset 0px 1px 0px rgba(0,0,0,.3), 0 1px 2px rgba(0,0,0,.5);
    }

    input[type=submit].c:active, input[type=button].c:active {
        background-position: 50% 70%;
    }

    input[type=submit].SignOn, input[type=button].SignOn {
        background-image: url("../Images/Keys.png"), -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/Keys.png"), -moz-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/Keys.png"), -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/Keys.png"), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
    }

    input[type=submit].GreenTick, input[type=button].GreenTick {
        background-image: url("../Images/GreenTick.png"), -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/GreenTick.png"), -moz-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/GreenTick.png"), -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/GreenTick.png"), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
    }

    input[type=submit].Padlock, input[type=button].Padlock {
        background-image: url("../Images/Padlock.png"), -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/Padlock.png"), -moz-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/Padlock.png"), -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/Padlock.png"), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
    }

    input[type=submit].Shutdown, input[type=button].Shutdown {
        background-image: url("../Images/Shutdown.png"), -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/Shutdown.png"), -moz-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/Shutdown.png"), -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/Shutdown.png"), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
    }

    input[type=submit].GreyX, input[type=button].GreyX {
        background-image: url("../Images/GreyX.png"), -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/GreyX.png"), -moz-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/GreyX.png"), -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/GreyX.png"), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
    }

    input[type=submit].GreenPlus, input[type=button].GreenPlus {
        background-image: url("../Images/GreenPlus.png"), -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/GreenPlus.png"), -moz-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/GreenPlus.png"), -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/GreenPlus.png"), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
    }

    input[type=submit].YellowPen, input[type=button].YellowPen {
        background-image: url("../Images/YellowPen.png"), -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/YellowPen.png"), -moz-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/YellowPen.png"), -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/YellowPen.png"), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
    }

    input[type=submit].RedX, input[type=button].RedX {
        background-image: url("../Images/RedX.png"), -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/RedX.png"), -moz-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/RedX.png"), -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/RedX.png"), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
    }

    input[type=submit].Export, input[type=button].Export {
        background-image: url("../Images/Export.png"), -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/Export.png"), -moz-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/Export.png"), -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/Export.png"), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
    }

    input[type=submit].DownBlack, input[type=button].DownBlack {
        background-image: url("../Images/DownBlack.png"), -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/DownBlack.png"), -moz-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/DownBlack.png"), -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/DownBlack.png"), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
    }

    input[type=submit].UpBlack, input[type=button].UpBlack {
        background-image: url("../Images/UpBlack.png"), -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/UpBlack.png"), -moz-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/UpBlack.png"), -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/UpBlack.png"), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
    }

    input[type=submit].History, input[type=button].History {
        background-image: url("../Images/History.png"), -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/History.png"), -moz-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/History.png"), -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/History.png"), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
    }

    input[type=submit].Search, input[type=button].Search {
        background-image: url("../Images/Search.png"), -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/Search.png"), -moz-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/Search.png"), -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/Search.png"), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
    }

    input[type=submit].Envelope, input[type=button].Envelope {
        background-image: url("../Images/Envelope.png"), -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/Envelope.png"), -moz-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/Envelope.png"), -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/Envelope.png"), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
    }

    input[type=submit].Copy, input[type=button].Copy {
        background-image: url("../Images/Copy.png"), -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/Copy.png"), -moz-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/Copy.png"), -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/Copy.png"), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
    }

.ui-resizable-e {
    width: 15px;
    /*background-color: bisque;*/
}

.dataTableHolder {
    cursor: default;
    position: absolute;
    /*width: 100%;
    height: 100%;*/
    overflow-x: auto;
    overflow-y: hidden;
    top: 5px;
    bottom: 5px;
    left: 5px;
    right: 5px;
    /*height: calc(100% - 10px);
    width: calc(100% - 50px);*/
}

    .dataTableHolder table {
        border-collapse: collapse;
    }

    .dataTableHolder:nth-child(2) {
        /*top: 5px;
        bottom: 5px;
        left: 5px;
        right: 5px;
        height: calc(100% - 10px);
        width: calc(100% - 10px);*/
        position: absolute;
        /*top: 0px;
        bottom: 0px;
        left: 0px;
        right: 0px;
        height: 100%;
        width: 100%;*/
    }

    .dataTableHolder thead {
        position: absolute;
        left: 0px;
        right: 0px;
        padding: 0;
        cursor: pointer;
    }

    .dataTableHolder p {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        padding: 2px 20px 2px 4px;
        transition: color .2s;
    }

    .dataTableHolder th p {
        padding: 4px 20px 4px 4px;
        color: whitesmoke;
    }

    .dataTableHolder tbody {
        background-image: linear-gradient(to bottom,#ffffff,#dddddd,#ffffff);
        background: -webkit-linear-gradient(top,#ffffff,#dddddd,#ffffff);
        background: -o-linear-gradient(to bottom, #ffffff,#dddddd,#ffffff);
        background: -moz-linear-gradient(to bottom, #ffffff,#dddddd,#ffffff);
        background: linear-gradient(to bottom, #ffffff,#dddddd,#ffffff);
        overflow-y: auto;
        overflow-x: hidden;
        position: absolute;
        top: 26px;
        bottom: 5px;
        left: 0px;
        right: 0px;
    }

        .dataTableHolder tbody tr:nth-child(2n) {
            background: rgba(65, 201, 255, 0.15);
        }

        .dataTableHolder tbody tr:hover {
            background: rgba(30, 139, 187, 0.20);
        }

        .dataTableHolder tbody tr:active {
            background: rgba(30, 139, 187, 0.20);
        }

        .dataTableHolder tbody tr.selected {
            background: rgba(30, 139, 187, 0.35);
        }

    .dataTableHolder th {
        background: rgba(25, 156, 213, 0.99);
        border-right: 1px solid black;
        border-bottom: 1px solid black;
        background-repeat: no-repeat;
        background-position: center right;
        /*border: 1px solid black;*/
        text-shadow: 0 0 3px black;
        padding: 0;
        /*width: 2%;*/
        /*min-width: 100px;*/
        white-space: nowrap;
        background-image: url("../Images/sort_both.png"), -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/sort_both.png"), -moz-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/sort_both.png"), -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: url("../Images/sort_both.png"), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
    }

        .dataTableHolder th p:hover {
            color: #cbcbcb;
            transition: color .2s;
        }

        .dataTableHolder th p:active {
            padding: 5px 20px 3px 4px;
        }

        .dataTableHolder th.unsorted {
            background-image: url("../Images/sort_both.png"), -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
            background-image: url("../Images/sort_both.png"), -moz-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
            background-image: url("../Images/sort_both.png"), -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
            background-image: url("../Images/sort_both.png"), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        }

        .dataTableHolder th.sortedAsc {
            background-image: url("../Images/sort_asc.png"), -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
            background-image: url("../Images/sort_asc.png"), -moz-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
            background-image: url("../Images/sort_asc.png"), -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
            background-image: url("../Images/sort_asc.png"), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        }

        .dataTableHolder th.sortedDesc {
            background-image: url("../Images/sort_desc.png"), -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
            background-image: url("../Images/sort_desc.png"), -moz-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
            background-image: url("../Images/sort_desc.png"), -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
            background-image: url("../Images/sort_desc.png"), linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        }

    .dataTableHolder.unsortable th {
        background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.12) 51%, rgba(0, 0, 0, 0.04));
    }


    .dataTableHolder th:not(.hidden):first-child {
        border-radius: 10px 0 0 0;
    }

    .dataTableHolder th:not(.hidden):last-child {
        border-radius: 0 10px 0 0;
        border-right: 0px;
    }

    .dataTableHolder td {
        border-right: 1px solid black;
        border-bottom: 1px solid black;
        /*border: 1px solid black;*/
        /*width: 2%;*/
        /*min-width: 100px;*/
        text-align: left;
        padding: 0;
        cursor: default;
        /*word-break: break-all;*/
    }

        .dataTableHolder td.firstCol {
            border-left: 1px solid black;
        }

.passShowHide {
    margin-left: -20px;
    margin-top: 3px;
    position: absolute
}