﻿.labelText {
    font-size: 13px;
}

.labelSmall {
    font-size: 11px;
}

.fullWidth {
    width: 100%;
}

.rAlign {
    float: right;
}

.lAlign {
    float: left;
}

.cAlign {
    text-align: center;
}

.padLeft {
    padding-left: 5px;
}

.sRmks {
    text-align: left;
    width: 1000px;
    overflow: hidden;
}

td#rowSchedAction button {
    margin-left: 5px;
}

div#divHeader {
    width: 1283px;
    overflow: hidden;
}

div#divSchedule {
    width: 1300px;
    height: 300px;
    min-height: 100px;
    overflow: scroll;
}

div#divPending {
    height: 45px;
    overflow: auto;
}

select {
    border-radius: 4px;
    border: 1px solid #AAAAAA;
    height: 25px;
    padding-left: 5px;
}

table {
    border-collapse: collapse;
}

    table#tSched {
        border: 1px solid gray;
        /*border-collapse: collapse;*/
    }

        table#tSched div.sRmks {
            cursor: pointer;
            cursor: hand;
        }

    table#tHeader {
        text-align: center;
        font-weight: bold;
        border: 1px solid gray;
        /*border-collapse: collapse;*/
    }

        table#tHeader .sRegion, table#tHeader .sChain, table#tHeader .sDepRegion, table#tHeader .sDepChain, table#tHeader .sOutlet, table#tHeader .sArea, table#tHeader .sProject, table#tPending .sCount {
            cursor: pointer;
            cursor: hand;
        }

    table#tPendingHeader {
        font-weight: bold;
    }

        table#tPendingHeader .sProject, table#tPendingHeader .sST, .sCount {
            text-align: center;
        }

.sNo {
    text-align: center;
    width: 30px;
}

.sRegion, .sChain {
    text-align: center;
    width: 125px;
}

.sSchedType {
    text-align: center;
    width: 80px;
}

.sDepRegion {
    text-align: center;
    width: 80px;
}

.sDepChain {
    text-align: center;
    width: 95px;
}

.sOutlet {
    width: 185px;
}

.sWD {
    text-align: center;
    width: 60px;
}

.sDraft {
    background-color: palevioletred;
}

.sConfirmed {
    background-color: palegoldenrod;
}

.sApproved {
    background-color: palegreen;
}

.sPermanentSched {
    background-color: #eaf4f7;
}

td.sPermanentSched.sLegend {
    margin: 1px;
}

td.sAdhocSched.sLegend {
    background-color: none;
    border: 1px solid gainsboro;
}

td.offDay{
    border: 1px dashed red;
}
td.halfOffDay{
    border: 1px dotted orange;
}
td.holiday{
    background-color: #FFFF00;
}

.sPre, .sPost, .sGTtl {
    text-align: center;
    width: 70px;
}

.sTtl {
    text-align: right;
}

.sCount {
    width: 100px;
}

.sArea {
    width: 100px;
}

.sProject {
    width: 100px;
}

.sST {
    width: 85px;
}

.sSup {
    width: 75px;
}

.sWDProm {
    text-align: center;
    width: 90px;
}

.sWDPast {
    background-color: #C2C2B2;
}

.sFD {
    text-decoration: none;
    font-weight: bold;
    color: white;
}

.sHD {
    text-decoration: none;
    font-weight: bold;
    border: 2px solid black;
    color: white;
}

.sCnlD {
    text-decoration: line-through;
    color: black;
}
.blackColor {
    color: black;
}
.sWDProm a {
    width: 90%;
    margin: 1px;
    display: inline-block;
    cursor: pointer;
    cursor: hand;
}

.sPromSched {
    background-color: #55d377;
}

.sPromDep {
    background-color: seagreen;
}

.sPromPend {
    background-color: #b4caa4;
}

.sPromRem {
    font-weight: bold;
    background-color: seagreen;
    color: firebrick;
}

.sPromAdhoc {
    background-color: salmon;
}

.sPromAdd {
    width: 100%;
    text-decoration: none;
    color: lightgrey;
}

.schedEdit {
    cursor: pointer;
    cursor: hand;
}

.schedEditX {
    background-color: gainsboro;
}

.oCtrl {
    width: 120px;
}

.oGrid {
    padding-left: 6px;
    padding-right: 6px;
    font-size: 0.84em;
}

.oGridOutlet {
    width: 171px;
}

.oGridCtrl {
    width: 86px;
}

.oCbx {
    text-align: center;
    width: 30px;
}

.oBtn {
    text-align: center;
}

.sLegend {
    width: 10px;
    height: 10px;
    display: inline-block;
}

.clearBG {
    background-color: white;
}
/* Modal Base CSS */
.scotch-overlay {
    position: fixed;
    /*z-index: 9998;*/
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: 1ms opacity ease;
    -moz-transition: 1ms opacity ease;
    -ms-transition: 1ms opacity ease;
    -o-transition: 1ms opacity ease;
    transition: 1ms opacity ease;
    background: rgba(0,0,0,.6);
}

.scotch-modal {
    position: absolute;
    /*z-index: 9999;*/
    top: 50%;
    left: 50%;
    opacity: 0;
    width: 94%;
    padding: 5px 5px 5px 5px;
    -webkit-transition: 1ms opacity ease;
    -moz-transition: 1ms opacity ease;
    -ms-transition: 1ms opacity ease;
    -o-transition: 1ms opacity ease;
    transition: 1ms opacity ease;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 2px;
    background: #fff;
}

    .scotch-modal.scotch-open.scotch-anchored {
        top: 20px;
        -webkit-transform: translate(-50%, 0);
        -moz-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        -o-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }

    .scotch-modal.scotch-open {
        opacity: 1;
    }

.scotch-overlay.scotch-open {
    opacity: 1;
}

/* Close Button */
.scotch-close {
    font-family: Helvetica,Arial,sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 12px;
    position: absolute;
    top: -15px;
    right: -15px;
    padding: 5px 7px 7px;
    cursor: pointer;
    color: #fff;
    border: 0;
    outline: none;
    background: #000;
    opacity: 0.8;
}

    .scotch-close:hover {
        background: #c0392b;
    }

.scotch-overlay.fade-and-drop {
    display: block;
    opacity: 0;
}

.scotch-modal.fade-and-drop {
    top: -300%;
    opacity: 1;
    display: block;
}

    .scotch-modal.fade-and-drop.scotch-open {
        top: 50%;
        -webkit-transition: 10ms top 10ms ease;
        -moz-transition: 10ms top 10ms ease;
        -ms-transition: 10ms top 10ms ease;
        -o-transition: 10ms top 10ms ease;
        transition: 10ms top 10ms ease;
    }

        .scotch-modal.fade-and-drop.scotch-open.scotch-anchored {
            -webkit-transition: 10ms top 10ms ease;
            -moz-transition: 10ms top 10ms ease;
            -ms-transition: 10ms top 10ms ease;
            -o-transition: 10ms top 10ms ease;
            transition: 10ms top 10ms ease;
        }

.scotch-overlay.fade-and-drop.scotch-open {
    top: 0;
    -webkit-transition: 10ms opacity ease;
    -moz-transition: 10ms opacity ease;
    -ms-transition: 10ms opacity ease;
    -o-transition: 10ms opacity ease;
    transition: 10ms opacity ease;
    opacity: 1;
}

.scotch-modal.fade-and-drop {
    -webkit-transition: 10ms top ease;
    -moz-transition: 10ms top ease;
    -ms-transition: 10ms top ease;
    -o-transition: 10ms top ease;
    transition: 10ms top ease;
}

.scotch-overlay.fade-and-drop {
    -webkit-transition: 10ms opacity 10ms ease;
    -moz-transition: 10ms opacity 10ms ease;
    -ms-transition: 10ms opacity 10ms ease;
    -o-transition: 10ms opacity 10ms ease;
    transition: 10ms opacity 10ms ease;
}

.modal-header {
    text-wrap: normal;
    word-wrap: break-word;
    text-align: center;
    background-color: #c4d6cb;
    height: 10px;
    vertical-align: middle;
    line-height: 0px;
}

.modal-header-text {
    font-weight: bold;
    line-height: 100%;
}
/*.modalDialog {
    position: fixed;
    font-family: Arial, Helvetica, sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.6);
    z-index: 99999;
    opacity: 0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
}

    .modalDialog:target {
        opacity: 1;
        pointer-events: auto;
    }

.modalHeader {
    width: 250px;
    height: 30px;
    text-align: center;
    position: relative;
    top: 20%;
    margin: auto;
    padding: 5px 20px 13px 20px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background: #c4d6cb;
}

.modalBody {
    width: 250px;
    position: relative;
    top: 20%;
    margin: auto;
    padding: 5px 20px 13px 20px;
    background: #fff;
}

.modalAction {
    text-align: center;
    width: 250px;
    position: relative;
    top: 20%;
    margin: auto;
    padding: 5px 20px 13px 20px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background: #fff;
}

.modalClose {
    background: #000;
    opacity: 0.8;
    color: #FFFFFF;
    line-height: 25px;
    position: absolute;
    right: -10px;
    top: -8px;
    text-align: center;
    width: 24px;
    text-decoration: none;
    font-weight: bold;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -moz-box-shadow: 1px 1px 3px #000;
    -webkit-box-shadow: 1px 1px 3px #000;
    box-shadow: 1px 1px 3px #000;
}

    .modalClose:hover {
        background: #ff0000;
        opacity: 0.8;
        text-decoration: underline;
    }

a.button {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    text-decoration: none;
    color: initial;
}*/
