/*v2.1.5

*/
:root {
    --accentColor1: #39496e;
    --accentColor2: #d6e6fc;

    --button-primary: #1CB841;
    --button-secondary: #42B8DD;
    --button-success: rgb(28, 184, 65);
    --button-error: #CA3C3C;
    --button-warning: #DF7514;
}





* {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    line-height: 1.35;
    /*overflow: auto; if element is larger than container grow*/
}

body {
	background-color: rgb(239, 241, 221);
}

a:visited {
    color: #3A6378;
}

a:active {
    color: #891100;
}

a:link {
    color: #3A6378;
}

a:hover {
    color: #891100;
}


.field-validation-error {
    font-size: .9rem;
    color:#ee0000;
    background-color:#ffdddd;
}

div, li, p, table, td {
    font-family: 'Roboto', helvetica;
    font-size: .85rem;
    color: #000000;
}



input, file, textarea, select {
    font-family: 'Roboto', helvetica;
    font-size: .8rem;
    background-color: #ffffff;
}





/*#region main layout panes*/
/*----------------------------------------------------------------------------------------------------------------*/
/*panes: main columns within rows. all visible by default except the bottom elements that are to take the left and right content when the page gets smaller.

*/

.container {
	width: 100%;
	max-width: 1000px;
	margin: auto;
	background-color: #ffffff;
}


.topNavContainer {
	width: 100%;
	max-width: 1000px;
	margin: auto;
	background-color: #ffffff;
}



/*-- clearfix hack -- */
.row:before,
.row:after {
    content: "";
    display: table;
    clear: both;
}


/* where no pane is needed or wanted such as spacer images etc*/
.nopane {
    margin: 0px;
    padding: 0px;
    line-height: 0px;
}



/* all panes */
[class*="pane-"] {
    float: left;
    min-height: 1px;
    padding: 12px;
	font-size: 1rem;
	line-height:23px;
}

/* specific */
.pane-banner {
    width: 100%;
    display: block;
    position: relative;
    padding: 0px;
}

/* nav */
.pane-top {
    width: 100%;
    padding-left: 12px;
    padding-top: 4px;
    padding-bottom: 2px;
    font-size: 0.8rem;
    color: #000000;
    display: block;
    text-align: center;
    background-color: #232F4A;
}

.pane-topNav {
    width: 100%;
    padding-top: 4px;
    padding-bottom: 6px;
    font-size: 0.8rem;
    color: #000000;
    display: block;
    text-align: center;
    background-color: var(--accentColor1);
}

.pane-topSubnav {
    width: 100%;
    padding: 4px;
    font-size: 0.8rem;
    color: #000000;
    display: block;
    text-align: center;
    background-color: var(--accentColor2);
}

.pane-footer {
    width: 100%;
    font-size: 0.8rem;
    color: #000000;
    display: block;
    text-align: center;
    background-color: var(--accentColor2);
}


/* general panes */
.pane-25 {
	width: 25%;
}

.pane-33 {
    width: 33.333333333%;
}

.pane-50 {
	width: 50%;
}

.pane-66 {
    width: 66.666666666%;
}

.pane-75 {
	width: 75%;
}

.pane-100 {
    width: 100%;
}



.navFooter {
    font-size: 13px;
    color: #ffffff;
    text-decoration: none
}

a.navFooter:link,
a.navFooter:visited {
    color: #ffffff;
    text-decoration: none
}

a.navFooter:hover,
a.navFooter:active {
    color: #66cdff;
    text-decoration: none
}



.topNav {
    text-decoration: none;
}


.topSubnav{
    text-decoration:none;
}

/*#endregion*/



/*#region menu dropdown options for main CME's*/
/*----------------------------------------------------------------------------------------------------------------*/

.topNavItem {
    color: #ffffff;
    background-color: #232f4a;
    text-shadow: 2px 1px 2px rgba(147,147,147,0.39);
}

    .topNavItem a:link,
    .topNavItem a:visited {
        color: #ffffff;
        box-shadow: 1px 1px 3px 1px rgba(0,0,0, 0.2);
    }

    .topNavItem a:hover,
    .topNavItem a:active {
        color: #891100;
        box-shadow: 0px 0px 3px 3px rgba(135,135,135, 0.5);
    }


.topNavItemAlt {
    color: #ffffff;
    background-color: #4a2323;
    text-shadow: 2px 1px 2px rgba(147,147,147,0.39);
}

    .topNavItemAlt a:link,
    .topNavItemAlt a:visited {
        color: #ffffff;
        box-shadow: 1px 1px 3px 1px rgba(0,0,0, 0.2);
    }

    .topNavItemAlt a:hover,
    .topNavItemAlt a:active {
        color: #891100;
        box-shadow: 0px 0px 3px 3px rgba(135,135,135, 0.5);
    }

/*#endregion*/



/*#region list headers*/
/*----------------------------------------------------------------------------------------------------------------*/

.VList {
    padding: 6px;
}

.VListHeader {
    color: #ffffff;
    background-color: var(--accentColor1);
    font-size: 16px;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
}

.VListSubheader {
    color: #000000;
    background-color: var(--accentColor2);
    font-size: 15px;
}

.VListSubheader2 {
    color: #000000;
    background-color: #efefef;
    font-size: 15px;
}

.VListItem {
    color: #000000;
    background-color: #ffffff;
    font-size: 15px;
}

.VListDetail {
    color: #000000;
    background-color: #ffffff;
    font-size: 12px;
}

/*#endregion*/



/*#region standard headers and callouts*/
/*----------------------------------------------------------------------------------------------------------------*/

.header {
    font-size: 1.8rem;
    color: #ab9a93;
}

.headerEmph {
	font-size: 1.8rem;
	color: rgb(223, 117, 20);
}

.headerHL {
	font-size: 1.8rem;
	background-color: #BFD3FF;
}

.headerAlt {
    font-size: 1.8rem;
    color: #C2561A;
}

.headerAlt2 {
    font-size: 1.8rem;
    color: #F58A4B;
}

.headerDescriptor {
    font-size: .8rem;
    color: #ab9a93;
    border-bottom: 1px #bbbbcc solid;
}




.subheader {
    font-size: 1.4rem;
    color: #ab9a93;
}

.subheaderAlt {
    font-size: 1.4rem;
    color: #C2561A;
}

.subheaderAlt2 {
    font-size: 1.4rem;
    color: #F58A4B;
}

.subheaderEmph {
	font-size: 1.4rem;
	color: rgb(223, 117, 20);
}

.subheaderHL {
	font-size: 1.4rem;
	background-color: #BFD3FF;
}

.subheaderLight {
    font-size: 1.4rem;
    color: #C2561A;
}




.highlight {
    background-color: #e7f3fa;
}


.emph {
    color: #cc0098;
}

.deemph {
    color: #777777;
    text-shadow: 0px 0px 4px #ffffff;/*to make it more visable on dark backgrounds*/
}

.error {
    color: #cc0033;
}

.faded {
    color: #dddddd;
}

.code {
    font-family: 'Courier New';
}




.softbox {
    border-radius: 5px;
    border: #002266 solid 1px;
    padding: 12px;
    background-color: #efefef;
}


.lightbox {
    border-radius: 5px;
    border: #dfdfdf solid 1px;
    padding: 12px;
    background-color: #ffffff;
}


.alertbox {
    border-radius: 5px;
    border: #990000 solid 1px;
    padding: 12px;
    background-color: #F2DEDE;
}


.resultbox {
    color: #006600;
    background-color: #ddffdd;
    border: 1px solid #008800;
    border-radius:5px;
    padding: 10px;
}


.mutedbox {
    color: #373737;
    background-color: #f2f2f2;
    border: 1px solid #575757;
    border-radius:5px;
    padding: 10px;
}




.optionsOverlay {
    display: none;
    z-index: 1;
    position: absolute;
    width: 900px;
    margin-left: auto;
    margin-right: auto;
    border: 1px #000000 solid;
    border-radius: 10px;
    padding: 10px;
    background-color: var(--accentColor2);
    filter: drop-shadow(0 0 30px #666666);
}


.datePickerOverlay {
    display: none;
    z-index: 1000;
    position: absolute;
    width: 770px;
    margin-left: auto;
    margin-right: auto;
    border: 1px #000000 solid;
    border-radius: 10px;
    padding: 10px;
    background-color: var(--accentColor2);
    filter: drop-shadow(0 0 10px #999999);
}


.datePickerButton, .datePickerButton:link, .datePickerButton:visited
{
    font-size:.8rem;
    color:#ffffff;
    background-color:#777777;
    border:1px solid #000000;
    text-decoration: none;
    padding-left:2px;
    padding-right:2px;
    margin-left:3px;
    margin-right:3px;
    margin-bottom:100px;
    border-radius:3px;
}


.helpFlyout {
    font-family: sans-serif;
    font-size: 12px;
    position: absolute;
    top: 9px;
    left: 0px;
    width: 16px;
    height: 38px;
    border: 1px solid #666666;
    z-index: 1;
    overflow-x: hidden;
    overflow-y: hidden;
    box-sizing: border-box;
    background-color: #ffffff;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 10px;
    margin: 0px;
}


.draft {
    border: 1px solid #cc0000;
    font-size: 10px;
    color: #666666;
    background-color:#ffeeee;
    border-radius: 2px;
}


.developer {
    border-left: 12px solid #cc0000;
    font-size: 13px;
    color: #666666;
    background-color: #ffeeee;
    border-radius: 2px;
}

    .developer > div {
        border-top: 6px solid #ffeeee;
        border-left: 10px solid #ffeeee;
        border-bottom: 6px solid #ffeeee;
        border-right: 20px solid #ffeeee;
    }





/*diag (update in cme.css and baga.css)*/
.diag {
    color: #000000;
    font-size: 0.9rem;
    background-color: #d4553f;
    
}

    .diag table {
        color: #000000;
        font-family:arial;
        border-collapse: collapse;
        border: 1px solid #ffffcc;
    }

    .diag table thead tr th {
        color: #ffffff;
        font-size: 0.9rem;
        font-weight: bold;
        background-color: #5a130a;
        border: 1px solid transparent;
        padding: 1px 4px 1px 4px;
        text-shadow: 2px 1px 2px rgba(255,255,255,0.2);
    }

    .diag table thead tr th:first-child {
        border-top-left-radius: 6px;
    }

    .diag table thead tr th:last-child {
        border-top-right-radius: 6px;
    }

    .diag table tbody td {
        color: #000000;
        font-size: 0.7rem;
        background-color: #ffeedd;
        border: 1px solid #5a130a;
        padding: 1px 4px 1px 4px;
    }




.shadow-box-outer-1 {
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
}

.shadow-box-outer-2 {
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1);
}

.shadow-box-outer-3 {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}

.shadow-box-outer-4 {
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

.shadow-box-outer-5 {
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}


.border-radius-1 {
    border-radius: 0.1rem;
}

.border-radius-2 {
    border-radius: 0.2rem;
}

.border-radius-3 {
    border-radius: 0.3rem;
}

.border-radius-4 {
    border-radius: 0.4rem;
}

.border-radius-5 {
    border-radius: 0.5rem;
}


/*#endregion*/



/*#region states and status*/
/*----------------------------------------------------------------------------------------------------------------*/

.internal {
    background-color: #b8e3c4;
}

.inactive {
    background-color: #a0b0ba !important;
}

.inactiveDate {
    background-color: #a0b0ea !important;
}

.inactiveHidden {
    background: repeating-linear-gradient( 57deg, #cccccc, #b6bdc4 10px, #dddddd 10px, #dddddd 20px ) !important;
}

.imported {
    background-color: #d3cea7 !important;
}


.shippingGround {
    background-color: #885511 !important;
}

.shipping3Day {
    background-color: #faa111 !important;
}

.shipping2Day {
    background-color: #3333ee !important;
}

.shipping1Day {
    background-color: #ee3333 !important;
}

.orderStatusNew {
    background-color: #fff6aa !important;
}

.orderStatusProcessing {
    background-color: #faa111 !important;
}

.orderStatusDeposit {
    background-color: #7badcf !important;
}

.orderStatusHold {
    background-color: #c1a57a !important;
}

.orderStatusProblem {
    background-color: #ffbbbb !important;
}

.orderStatusComplete {
    background-color: #7bcfaf !important;
}

.orderStatusCompleteSpecial {
    background-color: #a1e4bb !important;
}

.orderStatusCancel {
    background-color: #929291 !important;
}

/*#endregion*/



/*#region reverse*/
/*----------------------------------------------------------------------------------------------------------------*/

.reverse:link,
.reverse:visited {
	color: #ffffff;
}

.reverseLight {
	color: #ffffff;
	background-color: #0E6193;
}

.reverseLight:link,
.reverseLight:visited {
	color: #ffffff;
}

a.reverseLight:hover,
a.reverseLight:active {
	color: #eeAD28;
}

.reverseDark {
	color: #ffffff;
	background-color: #283F51;
}

.reverseDark:link,
.reverseDark:visited {
	color: #ffffff;
}

a.reverseDark:hover,
a.reverseDark:active {
	color: #eeAD28;
}

.reverseEmph {
	color :#FFAD28;
}

/*#endregion*/



/*#region font sizes*/
/*----------------------------------------------------------------------------------------------------------------*/

.fontTiny {
    font-size: .65rem
}

.fontSmall {
    font-size: .75rem
}

.fontMedium {
    font-size: .9rem
}

.fontRegular {
    font-size: 1rem
}

.fontLarge {
    font-size: 1.1rem
}

.fontXLarge {
    font-size: 1.3rem
}

.fontSizePixel11 {
    font-size: 11px
}

.fontSizePixel11 {
    font-size: 11px
}

.fontSizePixel14 {
    font-size: 14px
}

.fontSizePixel15 {
    font-size: 15px
}
/*#endregion*/





/*#region alignment and decoration*/
/*----------------------------------------------------------------------------------------------------------------*/

.bold {
    font-weight: bold
}

.left {
    text-align: left;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.top
{
	vertical-align:top;
}

.middle {
	vertical-align: middle;
}

.bottom {
	vertical-align: bottom;
}


a.noDecor:link,
a.noDecor:visited,
a.noDecor:hover,
a.noDecor:active {
    text-decoration: none;
}

/*#endregion*/



/*#region borders, radii and pads*/
/*----------------------------------------------------------------------------------------------------------------*/

/* grow image but do not exceed 100% */
.maxWidth100 {
    max-width: 100%
}

.radiusTiny {
	border-radius: 6px;
}

.radiusSmall {
    border-radius: 10px;
}

.radiusMedium {
	border-radius: 14px;
}

.radiusLarge {
	border-radius: 20px;
}


/* borders pads and margins */
.bottomBorder {
    border-bottom: 1px #283F51 solid;
}


.topPad1 {
    padding-top: 10px;
}

.topPad2 {
    padding-top: 20px;
}

.bottomPad1 {
    padding-bottom: 10px;
}

.bottomPad2 {
    padding-bottom: 20px;
}


.topMargin1 {
    margin-top: 10px;
}

.topMargin2 {
    margin-top: 20px;
}

.bottomMargin1 {
    margin-bottom: 10px;
}

.bottomMargin2 {
    margin-bottom: 20px;
}

/*#endregion*/



/*#region tabs and tabbed content*/
/*----------------------------------------------------------------------------------------------------------------*/

.tabLabel {
    text-decoration: none;
    font-weight: bold;
    border-top: 1px solid #bbbbcc;
    border-left: 1px solid #bbbbcc;
    border-right: 1px solid #bbbbcc;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.tabContainer {
    border-top: 1px solid #bbbbcc;
    border-bottom: 1px solid #bbbbcc;
    border-left: 1px solid #bbbbcc;
    border-right: 1px solid #bbbbcc;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 14px;
    padding-bottom: 14px;
    background-color: #ffffff;
}

.formBlock {
    border-top: 1px solid #999999;
    border-bottom: 1px solid #999999;
    border-left: 1px solid #999999;
    border-right: 1px solid #999999;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 14px;
    padding-bottom: 14px;
}

/*#endregion*/



/*#region tables list*/
/*----------------------------------------------------------------------------------------------------------------*/



.datalist {
    border-collapse: separate;
    border-spacing: 0;
    color: #4a4a4d;
    margin:auto;
}


    .datalist th, .datalist td {
        padding-top: 8px;
        padding-bottom: 8px;
        padding-right: 10px;
        padding-left: 10px;
        vertical-align: middle;
    }


    .datalist tr:hover {
        background-color: #e0c7bc !important;
    }

    .datalist  tr.inactive:hover {
        background-color: #b0a79c !important;
    }

    .datalist thead {
        color: #000044;
        font-size: 12px;
        text-transform: uppercase;
        text-shadow: 2px 1px 2px rgba(255,255,255,0.2);
    }

        .datalist thead tr th a:link,
        .datalist thead tr th a:visited {
            color: #333355;
            text-decoration: none;
        }

        .datalist thead tr th a:hover,
        .datalist thead tr th a:active {
            color: #990000;
        }

        .datalist thead tr th {
            background: linear-gradient(#D98686, #C2561A);
        }

    .datalist .sortColumn {
        background: linear-gradient(#F58A4B, #D98686);
    }

    .datalist thead tr th:first-child {
        border-top-left-radius: 6px;
    }


    .datalist thead tr th:last-child {
        border-top-right-radius: 6px;
    }



    .datalist tbody tr:nth-child(even) {
        background: #f0f0f2;
    }

    .datalist tbody tr:nth-child(odd) {
        background: #ffffff;
    }


    
    .datalist tfoot {
        color: #000044;
        font-size: 12px;
        text-transform: uppercase;
        text-shadow: 2px 1px 2px rgba(255,255,255,0.2);
    }

        .datalist tfoot tr td a:link,
        .datalist tfoot tr td a:visited {
            color: #333355;
            text-decoration: none;
        }

        .datalist tfoot tr td a:hover,
        .datalist tfoot tr td a:active {
            color: #990000;
        }

        .datalist tfoot tr,
        .datalist tfoot tr td {
            background: linear-gradient(#C2561A, #D98686);
        }



    .datalist td {
        border-bottom: 1px solid #cecfd5;
        border-right: 1px solid #cecfd5;
        font-size: 12px;
    }

        .datalist td:first-child {
            border-left: 1px solid #cecfd5;
        }

        .datalist td.edit {
            cursor: pointer;
        }

        /*when the column is just an icon or image*/
        .datalist td.datalistImage {
            padding-top: 3px;
            padding-bottom: 1px;
            padding-right: 10px;
            padding-left: 10px;
            vertical-align: middle;
            text-align: center;
        }

        .datalist td.datalistSubheader {
            color: #000044;
            background: linear-gradient(#b3cf99, #93b574);
            font-size: 12px;
            text-transform: uppercase;
            text-shadow: 2px 1px 2px rgba(255,255,255,0.2);
        }

        .datalist td.datalistSubheaderAlt {
            color: #000044;
            background: linear-gradient(#e5e3c0, #e4e4b0);
            font-size: 12px;
            text-transform: uppercase;
            text-shadow: 2px 1px 2px rgba(255,255,255,0.2);
        }


        /*option: skinny*/
        .datalist.skinny th, .datalist.skinny td {
            padding-top: 3px;
            padding-bottom: 3px;
            padding-right: 4px;
            padding-left: 4px;
            vertical-align: middle;
        }

        .datalist.skinny thead {
            color: #000044;
            font-size: 11px;
            text-transform: uppercase;
        }
    
        
        /*forms*/
        .datalist tbody tr td input {
            font-size: .7rem;
            background-color: #ffffff;
            border: 0px;
        }


.datalistRowEdited {
    background-color:#ffffea !important;
}
    




.selector-bar {
    width:100%;
    border-collapse: false;
    table-layout: fixed;
}

    .selector-bar td {
        background-color:#f4f4f4;
        font-size: 2cqw;
        font-size: min(2cqw, 1rem);
        text-align: center; 
        padding-top: .4rem;
        padding-bottom: .4rem;
        padding-right: .4rem;
        padding-left: .4rem;
        vertical-align: middle;
        border-right: 1px solid #cccccc;
        cursor: pointer;
    }

    .selector-bar td:first-child {
        border-left: none;
        border-top-left-radius: .8rem;
        border-bottom-left-radius: .8rem;
    }

    .selector-bar td:last-child {
        border-right: none;
        border-top-right-radius: .8rem;
        border-bottom-right-radius: .8rem;
    }

    .selector-bar td:hover {
        background-color:#a0def2;
        
    }

    .selector-bar td.selected {
        color: #ffffff;
        background-color: var(--button-secondary);
    }
/*#endregion*/



/*#region buttons*/
/*----------------------------------------------------------------------------------------------------------------*/

.button-primary,
a.button-primary {
    color: white;
    background-color: var(--button-primary);
}


a.button-secondary,
.button-secondary {
    color: white;
    background: var(--button-secondary);
}


a.button-success,
.button-success {
    color: white;
    background: var(--button-success);
}


a.button-error,
.button-error {
    color: white;
    background: var(--button-error);
}


a.button-warning,
.button-warning {
    color: white;
    background: var(--button-warning);
}


/*modifier button classes: these can be added to a button to modify, they are not standalone*/
.button-activated,
.buttonActivated {
    border: 1px solid #00662b;
}


.button-activated:after,
.buttonActivated:after {
    content: "\25BE";
}


.button-tiny,
.buttonTiny {
    font-size: 70%;
}


.button-small,
.buttonSmall {
    font-size: 85%;
}


.button-large,
.buttonLarge {
    font-size: 110%;
}


.button-xlarge,
.buttonXLarge {
    font-size: 125%;
}

/*#endregion*/



/*#region forms*/
/*----------------------------------------------------------------------------------------------------------------*/

.formHeader {
    font-size: 1.2rem;
    color: #ab9a93;
    font-weight: bold;
    border-bottom: 1px #bbbbcc solid;
    margin-bottom: 14px;
}

.textInputWidthWide {
    width: 600px;
}

.textInputWidthMedium {
    width: 400px;
}

.textInputWidthNarrow {
    width: 200px;
}

.textInputWidthSmall {
    width: 100px;
}

.textInputWidthTiny {
    width: 40px;
}

.textInputHeightTall {
    height: 300px;
}

.textInputHeightMedium {
    height: 140px;
}

.textInputHeightShort {
    height: 60px;
}

/*1 line tall*/
.textInputHeightLine {
    height: 30px;
}

.textInputNumeric {
    width: 90px;
    background-image: url(../images/editors/number.png);
    background-repeat: no-repeat;
    background-position: 70px;
    background-size:13px;
}

.textInputNumericNarrow {
    width: 70px;
    background-image: url(../images/editors/number.png);
    background-repeat: no-repeat;
    background-position: 50px;
    background-size: 13px;
}

.textInputDate {
    width: 200px;
    background-image: url(/images/editors/calendar.png);
    background-repeat: no-repeat;
    background-position: 180px;
    background-size: 15px;
}

.inputModified {
    background-color:#ffffcc;
}


.selectSmall {
    font-size:0.68rem;
}


.formLabelEmph {
    background-color:#e3b98d;
}

.formLabelBottomBorder {
    border-bottom: 1px #F58A4B solid;
}

/*#endregion*/



.editInPlaceBackdrop {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #000000;
    opacity: 0.5;
    background-size: 100% 100%;
    z-index: 10;
}

.editInPlaceIFrame {
    position: absolute;
    width: 95vw;
    height: 95vh;
    left: 2.5vw;
    right: 97.5vw;
    top: 2.5vh;
    bottom: 97.5vh;
    background: #ffffff;
    border: 2px #aaaaaa solid;
    border-radius: 4px;
    display: inline-block;
    align-items: center;
    justify-content: center;
    z-index: 11;
}

.generalWindowIFrame {
    position: absolute;
    width: 85vw;
    height: 85vh;
    left: 2.5vw;
    right: 97.5vw;
    top: 2.5vh;
    bottom: 97.5vh;
    background: #ffffff;
    border: 2px #aaaaaa solid;
    border-radius: 4px;
    display: inline-block;
    align-items: center;
    justify-content: center;
    z-index: 11;
}


/*#region building zone locations*/
/*----------------------------------------------------------------------------------------------------------------*/
.building {
	position: relative;
	margin: auto;
	width: 100%;
	max-width: 950px;
	background-color: #ffffff;
	border: 2px solid #eeeeee;
	border-radius: 3px;
}


.building-zone {
	display: flex;
	position: absolute;
	border: 3px solid #666666;
	border-radius: 3px;
	text-align: center;
	justify-content: center;
	align-items: center;
	vertical-align: middle;
	font-size: 2.8cqw;
	font-weight: bold;
	color: #ffffff;
	background-color: #dfdfdf;
	cursor: pointer;
    max-width: 950px;
}


.building-zone:hover {
	background-image: none;
	background-color: #42B8DD;
}



.select-button-container {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	justify-content: flex-start;
	background-color: #ffffff;
	border: 0px;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
}

	.select-button-container div {
		flex: 0 0 100%;
		width: 100%;
		border: 1px solid #cccccc;
		vertical-align: middle;
		font-size: 1.8cqw;
		color: #444444;
		background-color: #ffffff;
		cursor: pointer;
		margin-bottom: .8rem;
	}
/*#endregion*/



/*#region deprecated classes*/
/*----------------------------------------------------------------------------------------------------------------*/

/*preserve previous classes for now*/

.overlay {
    background-color: #ffffff;
    padding: 2px;
    border: solid 1px #000000;
    position: absolute;
    z-index: 1;
    width: 300px;
    font-weight: 100;
    text-decoration: none
}



/*default width of 300*/
.overlayLink {
}

.tblEd {
    border-collapse: collapse;
    border-radius: 5px
}

.tblBorderEd {
    border: solid 1px #aaaaaa;
    border-collapse: collapse;
    border-radius: 5px
}

table.tblBorderEd td {
    border: solid 1px #aaaaaa;
    padding: 1px
}

.tblHeaderEd {
    color: #000000;
    height: 32px;
    background-color: #d17a7a;
    font-weight: bold
}

a.tblHeaderEd:visited {
    color: #000000;
    font-weight: bold;
    text-decoration: none
}

a.tblHeaderEd:link {
    color: #000000;
    font-weight: bold;
    text-decoration: none
}

a.tblHeaderEd:hover {
    color: #af0808;
    font-weight: bold;
    text-decoration: none
}

.tblSubheaderEd {
    color: #000000;
    height: 26px;
    background-color: #eedad1;
    text-decoration: none
}

a.tblSubheaderEd:visited {
    color: #000000;
    text-decoration: none
}

a.tblSubheaderEd:link {
    color: #000000;
    text-decoration: none
}

a.tblSubheaderEd:hover {
    color: #000000;
    text-decoration: none
}

.tblCellEd {
    height: 26px;
    background-color: #ffffff
}

.tblCellAltEd {
    height: 26px;
    background-color: #d9eef1
}

.tblCellEmphEd {
    height: 26px;
    background-color: #ff7777
}

.tblCellHLEd {
    height: 26px;
    background-color: #e19a9a
}

.tblCellHLLowEd {
    height: 26px;
    background-color: #f0dfdf
}

.tblCellLLEd {
    height: 26px;
    background-color: #a1daaa
}

.tblCellLLLowEd {
    height: 26px;
    background-color: #dfeadf
}

.tblCellInactiveEd {
    height: 26px;
    background-color: #a0b0ba !important;
}

.tblCellInactiveDateEd {
    height: 26px;
    background-color: #a0b0ea !important;
}

.tblWrapper {
    background-color: #ffffff;
    border: solid 1px #000000;
    border-collapse: collapse
}

.tblWrapperCellWithBorders {
    border: solid 1px #000000;
    border-collapse: collapse;
    background-color: #d6e6fc;
}

.wrapperSiteLinks {
    font-size: 15px;
    text-decoration: none;
}

.wrapperContextLinks {
    font-size: 15px;
    text-decoration: none;
}

.wrapperBackForward {
    font-size: 15px;
    text-decoration: none;
}

/*#endregion*/





/*#region media queries*/
/*----------------------------------------------------------------------------------------------------------------*/

/* max-width: the width of the browser window (including the scroll bar) is x pixels or less
https://mydevice.io/devices/
*/

@media (min-width:1000px) {

}



@media (max-width: 999px) {

}



/* need to add this "between" range so sizes don't fight */
@media (min-width:699px) {

}



@media (max-width: 699px) {

}



@media (max-width: 375px) {


}

/*#endregion*/



