﻿#alerts {
    left: 50%;
    position: fixed;
    text-align: center;
    top: 5px;
    transform: translateX(-50%);
    z-index: 10;
}

    #alerts label {
        background-color: #ebe78d;
        border: 1px solid #8b8957;
        border-radius: 5px;
        color: black;
        display: table;
        margin: auto;
        padding: 2px 5px;
    }

        #alerts label.Error {
            background-color: #eb8d8d;
            border: 1px solid #8b5757;
        }

        #alerts label.Success {
            background-color: #95eb8d;
            border: 1px solid #598b57;
        }


.b {
    background-color: rgba(47, 134, 255, 0.40);
}

.blue {
    color: rgba(0, 117, 182, 1);
}

.buttonListRight {
    margin: 10px;
    text-align: right;
}

    .buttonListRight > div {
        display: inline-block;
    }

.buttonListCentre {
    margin: 10px;
    text-align: center;
}

    .buttonListCentre input[type=button] {
        width: 200px;
    }
.buttonListCentre3 {
    margin: 10px;
    text-align: center;
}

    .buttonListCentre3 input[type=button] {
        width: calc(33% - 22px);
        min-width:70px;
        max-width:150px;
    }

.checkedList {
    background: white;
    border: 1px solid rgb(186, 186, 186);
    border-radius: 5px;
    display: block;
    height: 150px;
    margin: 5px 5px 5px 50px;
    overflow: auto;
}

    .checkedList > label {
        display: block;
        margin: 2px 5px 2px 5px;
    }

        .checkedList > label:hover {
            background-color: rgb(196, 238, 255);
        }

.context {
    left: 500px;
    top: 300px;
}

    .context > div {
        border: 1px solid rgba(0, 0, 0, 0.00);
        padding: 8px;
    }

        .context > div * {
            display: inline-block;
            vertical-align: middle;
        }

        .context > div:active {
            background-color: rgba(50, 190, 255, 0.50);
            border: 1px solid #1f77a0;
            border-radius: 2px;
        }

        .context > div:hover {
            background-color: rgba(50, 190, 255, 0.30);
            border: 1px solid rgba(50, 190, 255, 0.75);
            border-radius: 2px;
        }

    .context img {
        margin-right: 5px;
        width: 15px;
    }

.dataTableHolder {
    bottom: 5px;
    cursor: default;
    left: 5px;
    overflow-x: auto;
    overflow-y: hidden;
    position: absolute;
    right: 5px;
    top: 5px;
}

    .dataTableHolder p {
        overflow: hidden;
        padding: 2px 20px 2px 4px;
        text-overflow: ellipsis;
        transition: color .2s;
        white-space: nowrap;
    }

    .dataTableHolder table {
        border-collapse: collapse;
    }

    .dataTableHolder tbody {
        background: linear-gradient(to bottom, #ffffff,#dddddd,#ffffff);
        background: -moz-linear-gradient(to bottom, #ffffff,#dddddd,#ffffff);
        background: -o-linear-gradient(to bottom, #ffffff,#dddddd,#ffffff);
        background: -webkit-linear-gradient(top,#ffffff,#dddddd,#ffffff);
        background-image: linear-gradient(to bottom,#ffffff,#dddddd,#ffffff);
        bottom: 5px;
        left: 0px;
        overflow-x: hidden;
        overflow-y: auto;
        position: absolute;
        right: 0px;
        top: 26px;
    }

        .dataTableHolder tbody tr.selected {
            background: rgba(30, 139, 187, 0.35);
        }

        .dataTableHolder tbody tr:active {
            background: rgba(30, 139, 187, 0.20);
        }

        .dataTableHolder tbody tr:hover {
            background: rgba(30, 139, 187, 0.20);
        }

        .dataTableHolder tbody tr:nth-child(2n) {
            background: rgba(65, 201, 255, 0.15);
        }

    .dataTableHolder td {
        border-bottom: 1px solid black;
        border-right: 1px solid black;
        cursor: default;
        padding: 0;
        text-align: left;
    }

        .dataTableHolder td:not(.hidden):first-child {
            border-left: 1px solid black;
        }

    .dataTableHolder th {
        background: rgba(25, 156, 213, 0.99);
        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));
        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"), -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-position: center right;
        background-repeat: no-repeat;
        border-bottom: 1px solid black;
        border-right: 1px solid black;
        padding: 0;
        text-shadow: 0 0 3px black;
        white-space: nowrap;
    }

        .dataTableHolder th p {
            color: whitesmoke;
            padding: 4px 20px 4px 4px;
            white-space: normal;
            word-wrap: normal;
        }

            .dataTableHolder th p:active {
                padding: 5px 20px 3px 4px;
            }

            .dataTableHolder th p:hover {
                color: #cbcbcb;
                transition: color .2s;
            }

        .dataTableHolder th.sortedAsc {
            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));
            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"), -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));
        }

        .dataTableHolder th.sortedDesc {
            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));
            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"), -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));
        }

        .dataTableHolder th.unsorted {
            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));
            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"), -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));
        }

        .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 thead {
        cursor: default;
        left: 0px;
        padding: 0;
        position: absolute;
        /*right: 0px;*/
    }

    .dataTableHolder.unsortable th {
        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-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: -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));
    }

    .dataTableHolder:nth-child(2) {
        position: absolute;
    }

.divFilter label {
    display: block;
}

.fore-palette a,
.back-palette a {
    background: #FFF;
    margin-bottom: 2px;
}

.fore-palette,
.back-palette {
    display: none;
}

.fore-wrapper,
.back-wrapper {
    cursor: pointer;
    display: inline-block;
}

    .fore-wrapper:hover .fore-palette,
    .back-wrapper:hover .back-palette {
        background: #FFF;
        border: 1px solid #DDD;
        box-shadow: 0 0 5px #CCC;
        display: block;
        float: left;
        height: 70px;
        padding: 3px;
        position: absolute;
        width: 160px;
    }

.form {
    background: linear-gradient(to bottom, #f5f5f5,#eeeeee,#f5f5f5);
    background: -moz-linear-gradient(to bottom, #f5f5f5,#eeeeee,#f5f5f5);
    background: -o-linear-gradient(to bottom, #f5f5f5,#eeeeee,#f5f5f5);
    background: -webkit-linear-gradient(top,#f5f5f5,#eeeeee,#f5f5f5);
    background-image: linear-gradient(to bottom,#f5f5f5,#eeeeee,#f5f5f5);
    border-radius: 4px;
    border: 1px solid #e5e5e5;
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 5%);
    min-height: 20px;
    margin-bottom: 20px;
    margin-left:auto;
    margin-right:auto;
    padding: 10px;
    vertical-align: top;
}

    .form * {
        box-sizing: border-box;
    }

    .form > p {
        margin: 10px;
        position: relative;
        vertical-align: middle;
    }

        .form > p > input, .form > p > textarea {
            margin: 0;
            padding: 4px;
            vertical-align: middle;
            width: 100%;
        }

            .form > p > input[readonly], .form > p > textarea[readonly] {
                background-color: rgba(0, 0, 0, 0.00);
                border: 1px solid rgba(0, 0, 0, 0.1);
                color: rgb(18, 105, 143);
                cursor: text;
            }

        .form > p > label:first-child {
            margin: 0 2px 0 0;
            padding: 0;
            text-align: left;
            vertical-align: middle;
            width: 100%;
        }

    .form.checkOptions > p > label {
        margin-left: 20px;
        text-align: left;
        vertical-align: middle;
        width: calc(100% - 25px);
    }

        .form.checkOptions > p > label > input {
            margin-right: 5px;
            vertical-align: middle;
        }

    .form.checkOptions p:first-child {
        font-weight: bold;
        text-align: center;
    }

    .form.w125 > p > input, .form.w125 > p > textarea {
        margin: 0;
        padding: 0;
        vertical-align: middle;
        width: calc(100% - 135px);
    }

    .form.w125 > p > label:first-child {
        display: inline-block;
        margin: 0 2px 0 0;
        padding: 0;
        text-align: right;
        vertical-align: middle;
        width: 125px;
    }

.formBackground {
    background-color: rgba(0, 0, 0, 0.50);
    bottom: 0px;
    display: none;
    left: 0px;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 4;
}

    .formBackground > div {
        bottom: 0;
        height: auto;
        left: 0;
        margin-bottom: auto;
        margin-left: auto;
        margin-right: auto;
        margin-top: auto;
        max-width: 100%;
        overflow: auto;
        padding: 5px;
        position: absolute;
        right: 0;
        top: 0;
        width: 500px;
    }

        .formBackground > div.vertShrink {
            bottom: auto;
            top: 50%;
            transform: translateY(-50%);
        }

.formTitle {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.froEdit p {
    color: black;
    cursor: text;
    font-family: Calibri, Fallback, sans-serif;
    margin-bottom: 1em;
    margin-top: 1em;
}

.g {
    background-color: rgba(0, 186, 0, 0.40);
}

.gr {
    background-color: rgba(103, 103, 103, 0.40);
}

.gray {
    color: rgba(78, 78, 78,1);
}

.green {
    color: rgb(25, 181, 0);
}

.greenNotArmed {
    color: rgb(14, 99, 0);
}

.hidden { /*Used for hidden columns in datatables*/
    display: none;
}

.hStack {
    position: absolute;
    text-align: center;
}

    .hStack * {
        display: inline-block;
        vertical-align: middle;
    }

.info label:nth-child(2n) {
    color: rgb(18, 105, 143);
    cursor: text;
    moz-user-select: text;
    ms-user-select: text;
    overflow: hidden;
    user-select: text;
    webkit-touch-callout: default;
    webkit-user-select: text;
    white-space: nowrap;
}
.itemList {
    padding: 5px;
    overflow-y:auto;
}

    .itemList p, .itemList a {
        margin-top: 2px;
        margin-bottom: 2px;
        display: inline-block;
        cursor: default;
        /*font-size: 16px;*/
    }

    .itemList > div {
        /*width: calc(100% - 4px);*/
        /*max-height: 112px;*/
        overflow: hidden;
        border-radius: 5px;
        background: #d8f0ff;
        border: 1px solid #6fc1f5;
        margin: 5px 2px;
        padding: 2px;
        cursor: pointer;
    }
        .itemList > div:hover {
            background: #a7d9f8;
        }

        .itemList > div:active {
            background: #8ccdf6;
        }

        .itemList > div:first-child, .itemList > div:last-child {
            background: grey;
            border: 1px solid #c3c3c3;
            height: 4px;
            padding:0;
        }

            .itemList > div:first-child:hover, .itemList > div:last-child:hover {
                background: grey;
                cursor: default;
            }
        .itemList > div.add {
            background: #ebebeb;
            border: 1px solid #c3c3c3
        }

            .itemList > div.add:hover {
                background: #dddddd;
            }

        .itemList > div span:first-child {
            font-weight: bold;
        }


.link {
    color: rgb(18, 105, 143);
    cursor: pointer;
    text-decoration: underline;
}

.o {
    background-color: rgba(186, 74, 0, 0.40);
}

.orange {
    color: rgba(240, 100, 0, 1);
}

.orangeNotArmed {
    color: rgb(190, 80, 30);
}

.paramBox {
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    margin: 2px;
    min-width: 120px;
    position: relative;
    text-align: center;
    vertical-align: top;
}

    .paramBox * {
        display: block;
        max-width: 160px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .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);
}

.red {
    color: rgba(243, 0, 0, 1);
}

.redNotArmed {
    color: rgb(159, 0, 0);
}

.salesTotals {
    position: absolute;
    text-align: center;
    top: 0px;
    width: 240px;
}

    .salesTotals label {
        display: block;
    }

.tabArea {
    background: linear-gradient(to bottom, #e2e2e2,#c2c2c2,#e2e2e2);
    background: -moz-linear-gradient(to bottom, #ffffff,#dddddd,#ffffff);
    background: -o-linear-gradient(to bottom, #ffffff,#dddddd,#ffffff);
    background: -webkit-linear-gradient(top,#ffffff,#dddddd,#ffffff);
    background-image: linear-gradient(to bottom,#ffffff,#dddddd,#ffffff);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.tabs {
    left: 5px;
    overflow-y: auto;
    position: absolute;
    right: 5px;
}

    .tabs p {
        border: 1px solid rgba(0, 0, 0, 0.00);
        margin: 0px;
        padding: 5px;
    }

        .tabs p:active, .tabs .selected {
            background-color: rgba(50, 190, 255, 0.50);
            border: 1px solid #1f77a0;
            border-radius: 2px;
        }

        .tabs p:hover {
            background-color: rgba(50, 190, 255, 0.30);
            border: 1px solid rgba(50, 190, 255, 0.75);
            border-radius: 2px;
        }

.tabsTop {
    left: 5px;
    position: absolute;
}

    .tabsTop p {
        border: 1px solid rgba(0, 0, 0, 0.00);
        border-right: 1px solid #808080;
        display: inline-block;
        font-size: 16px;
        margin: 0px;
        padding: 1px 10px 1px 10px;
    }

        .tabsTop p:active, .tabsTop .selected {
            background-color: rgba(50, 190, 255, 0.50);
            border: 1px solid #1f77a0;
            border-radius: 2px;
        }

        .tabsTop p:hover {
            background-color: rgba(50, 190, 255, 0.30);
            border: 1px solid rgba(50, 190, 255, 0.75);
            border-radius: 2px;
        }

.thFiltered > div {
    background: white;
    border: 1px solid black;
    border-radius: 5px;
    display: none;
    position: absolute;
    text-align: left;
    text-shadow: none;
    width: 170px;
    z-index: 4;
}

    .thFiltered > div > label {
        cursor: default;
    }

.thFiltered > img {
    cursor: pointer;
    display: block;
    margin-left: 2px;
    margin-top: 2px;
    opacity: .3;
    position: absolute;
    z-index: 1;
}

.thFiltered > p label {
    color: white;
    cursor: default;
    padding-left: 15px;
}

.title {
    font-size: 25px;
    text-align: center;
}

.toolbar {
    text-align: center;
}

    .toolbar a,
    .fore-wrapper,
    .back-wrapper {
        background: #FFF;
        border: 1px solid #AAA;
        border-radius: 1px;
        box-shadow: 0px 1px 0px #CCC;
        color: black;
        display: inline-block;
        font-family: 'Candal';
        margin: -2px;
        margin-top: 10px;
        padding: 5px;
        text-decoration: none;
        width: 1.5em;
    }

        .toolbar a:hover,
        .fore-wrapper:hover,
        .back-wrapper:hover {
            background: #f2f2f2;
            border-color: #8c8c8c;
        }

.topBar {
    margin: 0;
    position: absolute;
    top: 5px;
}
.topForm {
    height: calc(100% - 40px);
    margin: 0 auto 0 auto;
}

.ui-resizable-e {
    width: 30px;
    right:0px;
}

.vStack {
    position: absolute;
    text-align: left;
}

    .vStack * {
        display: block;
        vertical-align: middle;
    }

.yellow {
    color: rgb(220, 188, 0);
}

.yellowNotArmed {
    color: rgb(155, 133, 0);
}

::-ms-input-placeholder {
    color: rgb(186, 186, 186);
}

::placeholder {
    color: rgb(186, 186, 186);
    opacity: 1;
}

::-webkit-scrollbar {
    height: 12px;
    width: 12px;
}

::-webkit-scrollbar-corner {
    background: rgba(0,0,0,0);
}

::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,.3);
    border-radius: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(0,0,0,.2);
    border-radius: 6px;
}

:-ms-input-placeholder {
    color: rgb(186, 186, 186);
}

@keyframes bounceG {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0.1;
        transform: scale(0.6);
    }
}

@-moz-keyframes bounceG {
    0% {
        moz-transform: scale(1);
        opacity: 1;
    }

    100% {
        moz-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;
    }
}

@-o-keyframes bounceG {
    0% {
        opacity: 1;
        o-transform: scale(1);
    }

    100% {
        opacity: 0.1;
        o-transform: scale(0.6);
    }
}

@-webkit-keyframes bounceG {
    0% {
        opacity: 1;
        webkit-transform: scale(1);
    }

    100% {
        opacity: 0.1;
        webkit-transform: scale(0.6);
    }
}

a, ul, li {
    font-family: Calibri, Fallback, sans-serif;
    font-size: 16px;
}

    a.palette-item {
        border: 1px solid #CCC;
        border-radius: 3px;
        height: 1em;
        margin: 2px;
        width: 1em;
    }

        a.palette-item:hover {
            border: 1px solid #CCC;
            box-shadow: 0 0 3px #333;
        }

    a[data-command='redo'],
    a[data-command='strikeThrough'],
    a[data-command='justifyFull'],
    a[data-command='insertOrderedList'],
    a[data-command='outdent'],
    a[data-command='p'],
    a[data-command='superscript'] {
        border-radius: 0 3px 3px 0;
        margin-right: 5px;
    }

    a[data-command='undo'],
    .fore-wrapper,
    a[data-command='justifyLeft'],
    a[data-command='insertUnorderedList'],
    a[data-command='indent'],
    a[data-command='h1'],
    a[data-command='subscript'] {
        border-radius: 3px 0 0 3px;
    }
html {
    height: 100%;
    /*font-size: 62.5%;*/
    box-sizing: border-box;
    font-family: Calibri, Fallback, sans-serif;
}
body {
    background: linear-gradient(to bottom, #c4c4c4, #efefef);
    background: -moz-linear-gradient(to bottom, #c4c4c4, #efefef);
    background: -o-linear-gradient(to bottom, #c4c4c4, #efefef);
    background: -webkit-linear-gradient(top,#c4c4c4, #efefef);
    background-image: linear-gradient(to bottom,#c4c4c4, #efefef);
    background-color: #f5f5f5;
    padding-left: 15px;
    padding-right: 15px;
    color: #555;
    margin-left: auto;
    margin-right: auto;
   /* moz-user-select: none;
    ms-user-select: none;
    user-select: none;*/
    webkit-touch-callout: none;
    webkit-user-select: none;
    moz-font-smoothing: antialiased;
    webkit-font-smoothing: antialiased;
    height:calc(100% - 20px);
}
    body * {
        /*font-size: 18px;*/
    }
    body .heading1 {
        font-size: 24px;
        font-weight: bold;
    }
/*@media (max-width: 600px) {
    body .heading1 {
        font-size: 30px;
    }
}*/
    body .heading2 {
        font-size: 22px;
        text-align: center;
        display: inline-block;
        font-weight: bold;
    }
/*@media (max-width: 600px) {
    body .heading2 {
        font-size: 28px;
    }
}*/

    body .limitWidth {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    div.busyIndicator {
        background: rgba(128, 128, 128, 0.43);
        border-radius: 5px;
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        width: auto;
        z-index: 10;
    }

        div.busyIndicator > div {
            height: 40px;
            left: 50%;
            position: absolute;
            top: 50%;
            transform: translate(-50%,-50%);
            width: 80px;
        }

            div.busyIndicator > div > div {
                animation-direction: normal;
                animation-duration: 2s;
                animation-iteration-count: infinite;
                animation-name: bounceG;
                background-color: #2FBDFF;
                border: 1px solid #1e6687;
                float: left;
                height: 100%;
                margin-left: 3px;
                moz-animation-direction: normal;
                moz-animation-duration: 2s;
                moz-animation-iteration-count: infinite;
                moz-animation-name: bounceG;
                moz-transform: scale(0.7);
                ms-animation-direction: normal;
                ms-animation-duration: 2s;
                ms-animation-iteration-count: infinite;
                ms-animation-name: bounceG;
                ms-transform: scale(0.7);
                o-animation-direction: normal;
                o-animation-duration: 2s;
                o-animation-iteration-count: infinite;
                o-animation-name: bounceG;
                opacity: 0.1;
                o-transform: scale(0.7);
                transform: scale(0.7);
                webkit-animation-direction: normal;
                webkit-animation-duration: 2s;
                webkit-animation-iteration-count: infinite;
                webkit-animation-name: bounceG;
                webkit-transform: scale(0.7);
                width: 8px;
            }

                div.busyIndicator > div > div:nth-child(1) {
                    animation-delay: 0s;
                    moz-animation-delay: 0s;
                    ms-animation-delay: 0s;
                    o-animation-delay: 0s;
                    webkit-animation-delay: 0s;
                }

                div.busyIndicator > div > div:nth-child(2) {
                    animation-delay: 0.12s;
                    moz-animation-delay: 0.12s;
                    ms-animation-delay: 0.12s;
                    o-animation-delay: 0.12s;
                    webkit-animation-delay: 0.12s;
                }

                div.busyIndicator > div > div:nth-child(3) {
                    animation-delay: 0.24s;
                    moz-animation-delay: 0.24s;
                    ms-animation-delay: 0.24s;
                    o-animation-delay: 0.24s;
                    webkit-animation-delay: 0.24s;
                }

                div.busyIndicator > div > div:nth-child(4) {
                    animation-delay: 0.36s;
                    moz-animation-delay: 0.36s;
                    ms-animation-delay: 0.36s;
                    o-animation-delay: 0.36s;
                    webkit-animation-delay: 0.36s;
                }

                div.busyIndicator > div > div:nth-child(5) {
                    animation-delay: 0.48s;
                    moz-animation-delay: 0.48s;
                    ms-animation-delay: 0.48s;
                    o-animation-delay: 0.48s;
                    webkit-animation-delay: 0.48s;
                }

                div.busyIndicator > div > div:nth-child(6) {
                    animation-delay: 0.6s;
                    moz-animation-delay: 0.6s;
                    ms-animation-delay: 0.6s;
                    o-animation-delay: 0.6s;
                    webkit-animation-delay: 0.6s;
                }

        div.busyIndicator.trans {
            background: rgba(0, 0, 0, 0.00);
            border-radius: 5px;
            bottom: 0;
            left: 0;
            position: absolute;
            right: 0;
            top: 0;
        }

    div.form .divGroup {
        border: 1px solid rgba(0, 0, 0, 0.50);
        border-image: none;
        border-radius: 5px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 15px;
        padding: 10px 20px 5px;
        width: 200px;
    }

        div.form .divGroup > label:first-child {
            background-color: rgba(222, 222, 222, 1);
            margin-left: -10px;
            margin-top: -20px;
            padding-left: 5px;
            padding-right: 5px;
            position: absolute;
        }

    div.form .pCheckbox {
        margin-left: auto;
        margin-right: auto;
        width: 200px;
    }

    input:not([type='submit']):not([type='button']):enabled:hover, textarea:enabled:hover {
        background-color: rgb(241, 251, 255);
        box-shadow: 0 0 5px 0px rgba(25, 156, 213, .6);
    }

    input:not([type='submit']):not([type='button']):focus, textarea:focus {
        background-color: rgb(223, 245, 255);
    }

    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);
        border-radius: 3px;
        margin: 0;
        padding: 4px 4px 4px 4px;
    }

    @media (max-width: 600px) {
        input, label, p, textarea {
            font-size: 18px;
        }
    }

    input[type='checkbox'] {
        height: 14px;
        vertical-align: middle;
        width: 18px;
    }

    input[type=submit], input[type=button] {
        background: rgba(25, 156, 213, 0.99);
        background-position: 94% 50%;
        background-repeat: no-repeat;
        border: 1px solid #05549c;
        border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
        border-radius: 5px;
        box-shadow: inset 0px 1px 0px rgba(255,255,255,.3), 0 2px 4px rgba(0,0,0,.5);
        color: whitesmoke;
        display: inline-block;
        height: 25px;
        margin: 10px;
        moz-user-select: none;
        ms-user-select: none;
        /*padding: 0px 10px 0px 0px;*/
        text-align: center;
        user-select: none;
        vertical-align: middle;
        webkit-user-select: none;
        width: 125px;
    }

    @media (max-width: 600px) {
        input[type=submit], input[type=button] {
            height: 35px;
            width: 155px;
        }
    }

    input[type=submit].BlackX, input[type=button].BlackX {
        background-image: url("../images/BlackX.png");
    }

    input[type=submit].btnblue, input[type=button].btnblue {
        background: #199CD5;
        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));
        border: 1px solid #05549c;
    }

    input[type=submit].btngreen, input[type=button].btngreen {
        background: #17ad28;
        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));
        border: 1px solid #137c1f;
    }

    input[type=submit].btngrey, input[type=button].btngrey {
        background: #787878;
        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));
        border: 1px solid #515151;
    }

    input[type=submit].btnred, input[type=button].btnred {
        background: #ad1a15;
        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));
        border: 1px solid #9c0e05;
    }

    input[type=submit].btnyellow, input[type=button].btnyellow {
        background: #c4cb15;
        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));
        border: 1px solid #909217;
    }

    input[type=submit].c, input[type=button].c {
        background-position: 50% 50%;
    }

        input[type=submit].c:active, input[type=button].c:active {
            background-position: 50% 70%;
        }

    input[type=submit].Copy, input[type=button].Copy {
        background-image: url("../images/copy.png");
    }

    input[type=submit].Currency, input[type=button].Currency {
        background-image: url("../images/Currency.png");
    }

    input[type=submit].DownBlack, input[type=button].DownBlack {
        background-image: url("../images/sort_desc.png");
    }

    input[type=submit].Envelope, input[type=button].Envelope {
        background-image: url("../images/Envelope.png");
    }

    input[type=submit].Export, input[type=button].Export {
        background-image: url("../images/Export.png");
        width: 140px;
    }

    input[type=submit].Files, input[type=button].Files {
        background-image: url("../images/Files.png");
    }

    input[type=submit].GreenPlus, input[type=button].GreenPlus {
        background-image: url("../images/GreenPlus.png");
    }

    input[type=submit].GreenTick, input[type=button].GreenTick {
        background-image: url("../images/GreenTick.png");
    }

    input[type=submit].History, input[type=button].History {
        background-image: url("../images/History.png");
    }

    input[type=submit].Import, input[type=button].Import {
        background-image: url("../images/Import.png");
        width: 140px;
    }

    input[type=submit].LeftBlue, input[type=button].LeftBlue {
        background-image: url("../images/LeftBlue.png");
        background-position: 4% 50%;
    }

        input[type=submit].LeftBlue:enabled:active, input[type=button].LeftBlue:enabled:active {
            background-position: 4% 50%;
        }

    input[type=submit].Padlock, input[type=button].Padlock {
        background-image: url("../images/Padlock.png");
    }

    input[type=submit].Paste, input[type=button].Paste {
        background-image: url("../images/Paste.png");
    }

    input[type=submit].RedX, input[type=button].RedX {
        background-image: url("../images/RedX.png");
    }

    input[type=submit].RightBlue, input[type=button].RightBlue {
        background-image: url("../images/RightBlue.png");
    }

    input[type=submit].round, input[type=button].round {
        border-radius: 11px;
        height: 22px;
        width: 22px;
    }

    input[type=submit].Search, input[type=button].Search {
        background-image: url("../images/Search.png");
    }

    input[type=submit].Shutdown, input[type=button].Shutdown {
        background-image: url("../images/Shutdown.png");
    }

    input[type=submit].SignOn, input[type=button].SignOn {
        background-image: url("../images/Keys.png");
    }

    input[type=submit].UpBlack, input[type=button].UpBlack {
        background-image: url("../images/sort_asc.png");
    }

    input[type=submit].YellowPen, input[type=button].YellowPen {
        background-image: url("../images/YellowPen.png");
    }

    input[type=submit]:enabled:active, input[type=button]:enabled:active {
        background-position: 94% 70%;
        box-shadow: inset 0px 1px 0px rgba(0,0,0,.3), 0 1px 2px rgba(0,0,0,.5);
        color: #bbbbbb;
    }

    input[type=submit]:enabled:hover, input[type=button]:enabled:hover {
        box-shadow: inset 0px 1px 0px rgba(255,255,255,.3), 0 0 1px 1px rgba(0,144,224,.5);
    }

    input[type=submit]:not(:enabled), input[type=button]:not(:enabled) {
        background-color: rgb(169, 194, 205);
        box-shadow: none;
    }

    input[type=text] {
        cursor: text;
    }

    label {
        cursor: default;
        margin: 2px;
        moz-user-select: text;
        ms-user-select: text;
        padding: 0;
        user-select: text;
        webkit-user-select: text;
    }

        label.noRowsFound {
            display: none;
            left: 50%;
            position: absolute;
            top: 40px;
            transform: translateX(-50%);
        }

    p {
        cursor: text;
        margin: 0;
        moz-font-smoothing: antialiased;
        padding: 0;
        webkit-font-smoothing: antialiased;
    }

    select {
        cursor: default;
    }

    textarea {
        overflow-y: auto;
        resize: none;
        white-space: pre-wrap;
    }

    .passShowHide {
        margin-left: -20px;
        margin-top: 3px;
        position: absolute;
        cursor: default;
    }

    .arrow-btn {
        position: relative;
        float: left;
        top: 12px;
        left: calc(50% - 220px);
        padding: 0;
        border: none;
        background: transparent;
        cursor: pointer;
    }

    @media (max-width: 400px) {
        .arrow-btn {
            left: calc(50% - 160px);
        }
    }

    .arrow-btn svg {
        filter: drop-shadow(0 3px 3px rgba(0,0,0,0.35));
        transition: transform 0.05s ease, filter 0.05s ease;
        color: rgba(25, 156, 213, 0.99);
    }

    .arrow-btn:active svg {
        transform: translateY(2px);
        filter: drop-shadow(0 1px 1px rgba(0,0,0,0.25));
    }

    .arrow-btn:hover svg {
        filter: drop-shadow(0 2px 3px rgba(0,144,224,.5));
        /*box-shadow: inset 0px 1px 0px rgba(255,255,255,.3), 0 0 1px 1px rgba(0,144,224,.5);*/
    }