
/*#region ==== SECTION ====================================================== */
div.sc-section {
    border-color: #C0C0C0;
    border-style: solid;
    border-width: 0 1px 0 1px;
    border-radius: 6px;
    background-color: transparent;
    margin: 4px 0 4px 0;
}

    div.sc-section.sc-expanded > div.sc-header {
        border-radius: 5px 5px 0 0;
    }

    div.sc-section.sc-collapsed > div.sc-header {
        border-radius: 5px;
    }

    div.sc-section > div.sc-header {
        border-color: #C0C0C0;
        border-style: solid;
        border-width: 1px 0 1px 0;
        border-radius: 0;
        background-color: #F0F0F0;
        padding: 4px;
        cursor: pointer;
    }

        div.sc-section > div.sc-header .sc-indicator {
            float: left;
            width: 32px;
            line-height: 32px;
            text-align: center;
            margin-left: -4px;
        }

        div.sc-section > div.sc-header .sc-actions {
            float: right;
        }

    div.sc-section div.sc-content {
        border-color: #C0C0C0;
        border-style: solid;
        border-width: 0 0 1px 0;
        border-radius: 0 0 5px 5px;
        background-color: rgba(192, 192, 192, 0.5);
        padding: 4px;
        /*box-shadow: <inset*> <offset-x> <offset-y> <blur-radius*> <spread-radius*> <color*>;*/
        box-shadow: inset 0 4px 8px -4px rgba(0, 0, 0, 0.25);
    }

        div.sc-section div.sc-content > * {
            margin-left: 28px;
        }
/*#endregion*/

/*#region ==== TABLES ======================================================= */
div.sc-table {
    overflow: hidden;
}

    div.sc-table div.sc-thead {
        color: #999999;
        font-size: 8pt;
        font-weight: bold;
        text-transform: uppercase;
    }

    div.sc-table div.sc-tbody {
        color: #000000;
        font-size: 10pt;
        font-weight: normal;
        text-transform: none;
    }

    div.sc-table div.sc-tr *.sc-td {
        display: inline-block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        vertical-align: middle;
    }

table thead {
    color: #999999;
    font-size: 8pt;
    font-weight: bold;
    text-transform: uppercase;
}
/*#endregion*/

/*#region ==== ORDERED LIST ================================================= */
ol {
    counter-reset: list;
}

    ol li {
        list-style: none;
    }

        ol li:before {
            content: counter(list, lower-alpha) ") ";
            counter-increment: list;
        }
/*#endregion*/

/*#region ==== AUTOCOMPLETE ================================================= */
ul.autocomplete {
    list-style-type: none;
    border-radius: 0;
}

    ul.autocomplete li a {
        display: block;
        color: #000000;
        background: none;
        border-color: transparent;
        border-style: solid;
        border-width: 1px;
        border-radius: 0;
        margin: 0;
        padding: 2px;
        line-height: 20px;
        font-size: 10pt;
        font-weight: normal;
        text-decoration: none;
    }

        ul.autocomplete li a.ui-state-focus,
        ul.autocomplete li a.ui-state-hover {
            background-image: none;
            background-color: rgba(0, 0, 0, 0.06);
            border-color: rgba(51, 153, 255, 0.6);
        }
/*#endregion*/

/*#region ==== LISTBOX ====================================================== */
.listbox {
    width: 100%;
    height: 132px;
    white-space: nowrap;
    border-color: #cccccc;
    border-style: solid;
    border-width: 1px;
    border-radius: 4px;
    background-color: #ffffff;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    transition: border linear 0.2s, box-shadow linear 0.2s;
    overflow: hidden;
}

    .listbox:focus {
        border-color: rgba(82, 168, 236, 0.8);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
        outline: thin dotted \9;
    }

    .listbox .options {
        height: 100%;
        background-color: #f0f0f0;
        border-color: #cccccc;
        border-style: solid;
    }

        .listbox .options.right {
            float: right;
            border-width: 0 0 0 1px;
            border-radius: 0 3px 3px 0;
        }

            .listbox .options.right + .items {
                border-radius: 3px 0 0 3px;
            }

        .listbox .options.left {
            float: left;
            border-width: 0 1px 0 0;
            border-radius: 3px 0 0 3px;
        }

            .listbox .options.left + .items {
                border-radius: 0 3px 3px 0;
            }

        .listbox .options .option {
            margin: 2px;
        }

    .listbox .items {
        height: 100%;
        overflow-x: hidden;
        overflow-y: hidden;
    }

        .listbox .items:hover,
        .listbox .items:focus,
        .listbox .items:active {
            overflow-y: scroll;
        }

        .listbox .items .item input + label {
            background-color: transparent;
            border-color: transparent;
            border-style: solid;
            border-width: 1px;
        }

        .listbox .items .item:first-child input + label {
            border-top-left-radius: 3px;
            border-top-right-radius: 3px;
        }

        .listbox .items .item:nth-last-child(n+5) ~ .item:last-child input + label {
            border-bottom-right-radius: 3px;
            border-bottom-left-radius: 3px;
        }

        .listbox .items .item input:disabled,
        .listbox .items .item input:disabled + label,
        .listbox .items .item input:disabled + label:hover {
            background: transparent;
            opacity: 0.4;
            cursor: default;
            font-style: italic;
        }

    .listbox > .options.right + .items .item:first-child input + label {
        border-top-right-radius: 0;
    }

    .listbox > .options.right + .items .item:nth-last-child(n+5) ~ .item:last-child input + label {
        border-bottom-right-radius: 0;
    }

    .listbox > .options.left + .items .item:first-child input + label {
        border-top-left-radius: 0;
    }

    .listbox > .options.left + .items .item:nth-last-child(n+5) ~ .item:last-child input + label {
        border-bottom-left-radius: 0;
    }

    .listbox input {
        float: left;
        width: 13px;
        height: 26px;
        margin: 0;
        padding: 0;
    }

        .listbox input:focus {
            outline: none;
        }

    .listbox label {
        display: block;
        margin: 0;
        padding: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 20px;
        font-weight: normal;
    }

        .listbox label:hover {
            cursor: pointer;
        }

    .listbox.listbox-hidden input {
        margin: 0 -24px 0 -24px;
    }

    .listbox.listbox-hidden label {
        padding: 2px 6px 2px 6px;
    }

    .listbox.listbox-shown input {
        margin: 0 -24px 0 6px;
    }

    .listbox.listbox-shown label {
        padding: 2px 6px 2px 24px;
    }

    /*.listbox button:focus {
        box-shadow: inset 0 0 0 1px rgba(51, 153, 255, 0.75);
        outline: none;
    }*/

    .listbox.listbox-hidden .items .item input + label:hover {
        background-color: rgba(0, 0, 0, 0.06);
    }

    .listbox.listbox-hidden .items .item input:checked + label {
        background-color: rgba(51, 153, 255, 0.6);
    }

        .listbox.listbox-hidden .items .item input:checked + label:hover {
            background-color: rgba(51, 153, 255, 0.72);
        }

    .listbox.listbox-hidden .items .item input:focus + label {
        background-color: rgba(0, 0, 0, 0.06);
        border-color: rgba(51, 153, 255, 0.6);
    }

        .listbox.listbox-hidden .items .item input:focus + label:hover {
            background-color: rgba(0, 0, 0, 0.12);
        }

    .listbox.listbox-hidden .items .item input:checked:focus + label {
        background-color: rgba(51, 153, 255, 0.72);
        border-color: rgba(0, 0, 0, 0.18);
    }

        .listbox.listbox-hidden .items .item input:checked:focus + label:hover {
            background-color: rgba(51, 153, 255, 0.84);
        }

    .listbox.listbox-shown .items .item input + label:hover {
        background-color: rgba(0, 0, 0, 0.06);
    }

    .listbox.listbox-shown .items .item input:focus + label {
        background-color: rgba(0, 0, 0, 0.06);
        border-color: rgba(51, 153, 255, 0.6);
    }

        .listbox.listbox-shown .items .item input:focus + label:hover {
            background-color: rgba(0, 0, 0, 0.12);
        }
/*#endregion*/

/*#region ==== GENTLE ======================================================= */
/*.gentle {
    opacity: 0.4;
    color: rgba(0, 0, 0, 0.4);
    text-shadow: <offset-x> <offset-y> <blur-radius*> <color*>;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.6);
}

    .gentle button,
    .gentle input[type="button"],
    button.gentle,
    input[type="button"].gentle {
        background: none;
        border: none;
        margin: 0;
        padding: 2px 4px;
        cursor: default;
    }

    .gentle:hover,
    .gentle:focus {
        opacity: 0.8;
        color: rgba(0, 0, 0, 0.8);
        cursor: pointer;
    }

    .gentle:active {
        opacity: 1.0;
        color: rgba(0, 0, 0, 1.0);
        cursor: pointer;
    }

    .gentle:disabled {
        opacity: 0.2;
        color: rgba(0, 0, 0, 0.2);
        cursor: default;
    }

button i.gentle,
input[type="button"] i.gentle {
    opacity: 0.4;
}

button:hover i.gentle,
input[type="button"]:hover i.gentle,
button:focus i.gentle,
input[type="button"]:focus i.gentle {
    opacity: 0.8;
}

button:active i.gentle,
input[type="button"]:active i.gentle {
    opacity: 1.0;
}

button:disabled i.gentle,
input[type="button"]:disabled i.gentle {
    opacity: 0.2;
}*/
/*#endregion*/

/*#region ==== ALERT AND DIALOG ============================================= */
/*.alert {
    margin: 0;
    padding: 8px 16px;
    text-shadow: <offset-x> <offset-y> <blur-radius*> <color*>;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.6);
}*/

/*.alert,*/
.dialog {
    background-color: #f0f0f0;
    border-color: #e0e0e0;
    border-style: solid;
    border-width: 1px;
    border-radius: 6px;
    color: #808080;
}


/*.alert-warning,*/
.dialog-warning {
    background-color: #fcf8e3;
    border-color: #fbeed5;
    color: #c09853;
}

/*.alert-success,*/
.dialog-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #468847;
}

/*.alert-error,*/
.dialog-error {
    background-color: #f2dede;
    border-color: #eed3d7;
    color: #b94a48;
}

/*.alert-info,*/
.dialog-info {
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #3a87ad;
}

/*.alert h3,*/
.dialog h3 {
    margin: 0;
    line-height: normal;
}

.backdrop-outer {
    display: table;
    position: fixed;
    width: 100%;
    height: 200%;
    left: 0;
    top: -50%;
    z-index: 9999;
    background-attachment: scroll;
    background-position: left top;
    background-repeat: repeat;
}

    .backdrop-outer.true {
        background-image: url( "images/overlay.png" );
    }

    .backdrop-outer.false {
        background-image: url( "images/overlay_trans.png" );
    }

    .backdrop-outer.hidden {
        background-color: transparent;
    }

.backdrop-middle {
    display: table-cell;
    vertical-align: middle;
}

.backdrop-inner {
    margin: 0 auto;
}

.dialog {
    box-shadow: 0 4px 8px rgba( 0, 0, 0, 0.5 );
    margin: 0 auto;
    width: 560px;
}

    .dialog .dialog-head {
        background-color: rgba( 0, 0, 0, 0.05 ) !important;
        border-bottom-color: inherit;
        border-bottom-style: solid;
        border-bottom-width: 1px;
        border-radius: 7px 7px 0 0;
        padding: 8px 16px;
        /*box-shadow: <inset*> <offset-x> <offset-y> <blur-radius*> <spread-radius*> <color*>;*/
        box-shadow: inset 0 -1px 0 rgba( 255, 255, 255, 0.75 );
        /*text-shadow: <offset-x> <offset-y> <blur-radius*> <color*>;*/
        text-shadow: 1px 1px 0 rgba( 255, 255, 255, 0.5 );
        text-align: left;
    }

    .dialog .dialog-body {
        max-height: 400px;
        overflow-y: auto;
        padding: 16px;
    }

    .dialog .dialog-foot {
        background-color: rgba( 0, 0, 0, 0.05) !important;
        border-top-color: inherit;
        border-top-style: solid;
        border-top-width: 1px;
        border-radius: 0 0 7px 7px;
        padding: 8px 16px;
        /*box-shadow: <inset*> <offset-x> <offset-y> <blur-radius*> <spread-radius*> <color*>;*/
        box-shadow: inset 0 1px 0 rgba( 255, 255, 255, 0.75 );
        /*text-shadow: <offset-x> <offset-y> <blur-radius*> <color*>;*/
        text-shadow: 1px 1px 0 rgba( 255, 255, 255, 0.5 );
        text-align: right;
    }

        .dialog .dialog-foot .btn + .btn {
            margin: 0 0 0 4px;
        }

.ph {
    position: relative;
    margin: 0 0 4px 0;
}

    /*.ph + .ph {
        margin: 4px 0 0 0;
    }*/

    .ph:last-child {
        margin-bottom: 20px;
    }


.fixed {
    z-index: 1020;
    position: fixed;
    top: auto;
    right: 0;
    bottom: auto;
    left: 0;
    width: 1170px;
    height: auto;
    margin: 0 auto;
    padding: 0 16px;
}

    .fixed.fixed-top {
        top: 0;
    }

    .fixed.fixed-bottom {
        bottom: 0;
    }

/*.fixed .alert {
        box-shadow: 0 4px 8px rgba( 0, 0, 0, 0.5 );
    }*/
/*#endregion*/

/*#region ==== OTHER ======================================================== */
.btn.hidden {
    display: none;
}

/*.close {
    position: relative;
    float: right;
}

.alert .close {
    top: 2px;
    right: 0;
    margin-top: -4px !important;
    margin-right: -10px !important;
}*/

[class*='span'] {
    margin-left: 0px;
}

[class*='span6'] + [class*='span6'] {
    margin-left: 20px;
}

input.postal-code {
    width: 60px;
}

input.postal-district {
    margin-left: 5px;
    width: 127px;
}

.condensed * + * {
    margin: 5px 0 0 0;
}
/*#endregion*/

/*#region ==== FILTERS ====================================================== */
.sc-filters {
    display: none;
}
/*.filters {
    background-color: #F4F4F4;
    border-color: #D8D8D8;
    border-style: solid;
    border-width: 1px;
    border-radius: 4px;
    margin: 0;
    padding: 8px;
    display: none;
    clear: both;
}

    .filters > .left {
        overflow: hidden;
    }

    .filters > .right {
        float: right;
    }

        .filters > .left > .option,
        .filters > .right > .option {
            display: inline-block;
            margin-right: 20px;
        }

            .filters > .left > .option input,
            .filters > .right > .option input {
                vertical-align: middle;
            }

            .filters > .left > .option label,
            .filters > .right > .option label {
                display: inline-block;
                margin-left: -24px;
                padding-left: 24px;
                padding-top: 5px;
                cursor: pointer;
            }

    .filters .switch {
        margin-right: 4px;
    }

        .filters .switch label,
        .filters .switch label {
            width: 40px;
        }

caption .filters {
    text-align: left;
}*/
/*#endregion*/

/*#region ==== SWITCHES ===================================================== */
.switch {
    background-color: #EAEAEA;
    border-color: #D8D8D8;
    border-style: solid;
    border-width: 1px;
    border-radius: 4px;
    display: inline-block;
    vertical-align: top;
}

    .switch * {
        margin: 0;
        padding: 0;
    }

    .switch > .option {
        display: inline-block;
        overflow: hidden;
        float: left;
    }

        .switch > .option + .option {
            border-left-color: #D8D8D8;
            border-left-style: solid;
            border-left-width: 1px;
        }

        .switch > .option:first-child {
            border-radius: 3px 0 0 3px;
        }

        .switch > .option:last-child {
            border-radius: 0 3px 3px 0;
        }

        .switch > .option > input {
            display: none;
        }

            .switch > .option > input:checked + label {
                background-color: #262626;
                color: #FFFFFF;
                font-weight: bold;
                cursor: default;
            }

        .switch > .option > label {
            display: inline-block;
            padding: 4px 6px 4px 6px;
            text-align: center;
            line-height: 20px;
        }
/*#endregion*/

/*#region ==== ENTITY VIEWS ================================================= */
span.lbl {
    width: 160px;
    text-align: right;
    float: left;
    font-weight: bold;
}

.is-deleted {
    color: rgba(192, 64, 64, 1);
    font-style: italic;
    font-weight: bold;
}
/*#endregion*/

/*#region ==== BOOTSTRAP FIXES ============================================== */
.checkbox {
    margin-left: 7px;
}

small {
    font-size: 80%;
}

/*.form-control {
    margin-bottom: 5px;
}*/

/*.form-horizontal .controls > span {
    display: block;
    margin-bottom: 5px;
    padding-top: 5px;
}

.table tbody + tbody {
    border-top: 0 none transparent;
}

label.checkbox {
    display: inline-block;
}

hr {
    border-top-color: #e5e5e5;
}

.input-prepend.x1 > input,
.input-append.x1 > input {
    width: 175px;
}

.input-prepend.x1 > .add-on,
.input-append.x1 > .add-on {
    width: 20px;
}

.input-prepend.x1 > .btn,
.input-append.x1 > .btn {
    width: 32px;
}

.input-prepend.x2 > input,
.input-append.x2 > input {
    width: 170px;
}

.input-prepend.x2 > .add-on,
.input-append.x2 > .add-on {
    width: 25px;
}

.input-prepend.x2 > .btn,
.input-append.x2 > .btn {
    width: 37px;
}

.input-prepend.x3 > input,
.input-append.x3 > input {
    width: 165px;
}

.input-prepend.x3 > .add-on,
.input-append.x3 > .add-on {
    width: 30px;
}

.input-prepend.x3 > .btn,
.input-append.x3 > .btn {
    width: 42px;
}

.input-prepend.x4 > input,
.input-append.x4 > input {
    width: 160px;
}

.input-prepend.x4 > .add-on,
.input-append.x4 > .add-on {
    width: 35px;
}

.input-prepend.x4 > .btn,
.input-append.x4 > .btn {
    width: 47px;
}

.input-prepend.x5 > input,
.input-append.x5 > input {
    width: 155px;
}

.input-prepend.x5 > .add-on,
.input-append.x5 > .add-on {
    width: 40px;
}

.input-prepend.x5 > .btn,
.input-append.x5 > .btn {
    width: 52px;
}

.table tr th.right,
.table tr td.right {
    text-align: right;
}

.table tr th.center,
.table tr td.center {
    text-align: center;
}

.table tr th.left,
.table tr td.left {
    text-align: left;
}*/
/*#endregion*/

/*#region ==== LEGACY BROWSER SUPPORT ======================================= */
.placeholder {
    color: #999999;
}
/*#endregion*/

/*#region ==== SEARCH INPUT ================================================= */
.sc-search {
    position: relative;
}

    .sc-search input + i {
        position: absolute;
        top: 11px;
        right: 11px;
        bottom: 0;
        left: auto;
        opacity: 0.4;
        cursor: text;
    }

    .sc-search input:disabled + i {
        cursor: default;
    }

    .sc-search input:focus + i {
        display: none;
    }
/*#endregion*/

/*#region ==== ORDER ======================================================== */
.order {
    width: 100%;
}

    .order.sticky thead {
        position: sticky;
        top: 12px;
        z-index: 1;
        background: white;
        outline: 2px solid #ddd;
        outline-offset: -1px;
        border-width: 0 !important;
    }

    .order.sticky thead::before {
        content: "";
        position: absolute;
        top: -13px;
        right: -12px;
        bottom: 0;
        left: -12px;
        height: 12px;
        width: auto;
        z-index: 1;
        background: white;
    }

    .order.sticky thead th {
        outline: 1px solid #ddd;
        outline-offset: 0px;
        border-width: 0 !important;
    }

    .order thead,
    .order tbody,
    .order tfoot {
        font-size: 8pt;
    }

    .order *:disabled {
        cursor: default;
    }

    .order caption {
        font-size: 20pt;
        line-height: 28pt;
        text-align: left;
        color: #0088CC;
    }

    .order col.zero-width {
        width: 1px;
    }

    .order col.yellow,
    .order.sticky th.yellow {
        background-color: #FCFCCF;
    }

    .order col.green,
    .order.sticky th.green {
        background-color: #CFFCCF;
    }

    .order tr {
        /*transition: all 0.4s ease-in-out;*/
    }

        .order tr.invalid > *,
        .order tr.invalid input {
            color: #C04040;
        }

        .order tr.invalid input {
            border-color: #CD6666;
        }

        .order tr.group {
            font-weight: bold;
            background-color: #F2F2F2;
        }

        .order tr td {
            vertical-align: inherit !important;
        }

            .order tr th.center input,
            .order tr td.center input {
                text-align: center;
            }

                /* IE10 Fix */
                .order tr th.center input::-ms-clear,
                .order tr td.center input::-ms-clear {
                    display: none;
                }

    .order col.date {
        width: 100px;
    }

    .order col.quantity {
        width: 80px;
    }

    .order col.additional-item {
        width: 100px;
    }

    .order col.additional-name {
        width: 320px;
    }

    .order col.additional-desc {
        width: 400px;
    }

    .order col.additional-quantity {
        width: 80px;
    }

.input-date {
    width: 68px;
}

.input-quantity {
    width: 48px;
}

.order-buttons {
    display: table;
    width: 100%;
    height: auto;
    table-layout: fixed;
    border-collapse: collapse;
}

    .order-buttons td {
        width: 50%;
        padding: 0 6px;
    }

        .order-buttons td:first-child {
            padding: 0 6px 0 0;
        }

        .order-buttons td:last-child {
            padding: 0 0 0 6px;
        }

.order-button {
    height: 60px;
    font-size: 22pt;
    line-height: 40px;
}

    .order-button.save {
        width: 100%;
        line-height: 30px;
        text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.75);
    }

        .order-button.save > small {
            display: block;
            line-height: 10pt;
            font-size: 10pt;
        }

    .order-button.submit {
        width: 100%;
        text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.75);
    }

    .order-button.back {
        width: 180px;
        text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
    }

.flow {
    clear: both;
}

    .flow > .left {
        float: left;
    }

    .flow > .right {
        float: right;
    }

    .flow > .fill {
        overflow: hidden;
    }

.even {
    display: table;
    table-layout: fixed;
    width: 100%;
}

    .even > * {
        display: table-cell;
    }

        .even > * + * {
            padding-left: 4px;
        }

.order .checkbox {
    position: absolute;
    float: left;
    margin: -15px 0 0 -6px;
}
/*#endregion*/

/*#region ==== MENU ========================================================= */
/*.navbar .nav > li > a i {
    opacity: 0.6;
}

.navbar .nav > li > a:hover i {
    opacity: 1;
}

.navbar-inverse .nav > li > a i {
    opacity: 0.6;
}

.navbar-inverse .nav > li > a:hover i {
    opacity: 1;
}*/
/*#endregion*/

/*#region ==== STICKY FOOTER LAYOUT ========================================= */
html, body {
    height: 100%;
}

.wrapper {
    height: auto;
    margin: 0 auto;
}

.push {
    min-height: 41px;
}

.footer {
    min-height: 40px;
    padding-right: 20px;
    padding-left: 20px;
    background-color: #fafafa;
    background-image: linear-gradient(to bottom, #ffffff, #f2f2f2);
    background-repeat: repeat-x;
    border-top-color: #d4d4d4;
    border-top-style: solid;
    border-top-width: 1px;
    box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
    z-index: 1020;
}
/*#endregion*/

/*#region ==== LOADING OVERLAY ============================================== */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 65535;
    background-color: transparent;
    background-image: url( "../../Images/33.png" );
    background-attachment: scroll;
    background-position: top left;
    background-repeat: repeat;
    display: table;
    width: 100%;
    height: 100%;
}

    .loading.hidden {
        display: none;
    }

    .loading > .image {
        background-color: transparent;
        background-image: url( "../../Images/loading.gif" );
        background-attachment: scroll;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 200px;
        display: table-cell;
        text-align: center;
        vertical-align: middle;
        color: #FFFFFF;
        font-weight: bold;
        font-size: 16pt;
        text-shadow: 1px 1px 2px #000000;
        padding-top: 280px;
    }


input + label.suggestion {
    position: relative;
    display: inline-block;
    top: -24px;
    right: 0;
    bottom: 0;
    left: 0;
    vertical-align: baseline;
}
/*#endregion*/

/*#region ==== SUGGESTION INPUT ============================================= */
label.suggestion {
    display: inline-block;
    position: relative;
    margin: 0;
}

    label.suggestion input {
        padding: 4px 6px 4px 6px;
        line-height: 20px;
    }

        label.suggestion input + span {
            position: absolute;
            top: 1px;
            right: 1px;
            bottom: 1px;
            left: 1px;
            opacity: 0.4;
            cursor: text;
            padding: 4px 6px 4px 6px;
            line-height: 20px;
        }

        label.suggestion input:disabled + span {
            cursor: default;
        }

        label.suggestion input:focus + span {
            display: none;
        }
/*#endregion*/

/*#region ==== JQUERY UI OVERRIDES ========================================== */
#ui-datepicker-div {
    /*padding-bottom: 0.2em !important;*/
}

    #ui-datepicker-div table.ui-datepicker-calendar {
        /*display: none !important;*/
    }

    #ui-datepicker-div td.ui-datepicker-week-col {
        text-align: center !important;
    }

.calendar-hidden {
    padding-bottom: 0.2em !important;
}

    .calendar-hidden table.ui-datepicker-calendar {
        display: none !important;
    }
/*#endregion*/

/*#region ==== MODAL DIALOG ================================================= */
.unsupported-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 65535;
    background-image: url( "images/overlay.png" );
    overflow: auto;
}

.unsupported-dialog {
    margin: 40px auto 40px auto;
}
/*#endregion*/

/*#region ==== ADJUSTED STYLES - NAVBAR ===================================== */
/*.navbar-inner {
    border: none;
    background-image: none;
    background-color: transparent;
    filter: none;
}

.navbar-fixed-top .navbar-inner,
.navbar-static-top .navbar-inner {
    box-shadow: none;
}

.navbar .nav {
    margin-left: 8px;
}

    .navbar .nav > li {
        margin: 12px 0;
    }

        .navbar .nav > li + li {
            margin-left: 16px;
        }

        .navbar .nav > li > a {
            font-weight: bold;
            padding: 2px 6px;
            text-shadow: none;
            border-radius: 3px;
            background-color: #FFFFFF;
            color: #E2001A;
        }

    .navbar .nav > .active > a,
    .navbar .nav > .active > a:hover,
    .navbar .nav > .active > a:focus {
        box-shadow: none;
        background-color: #E2001A;
        color: #FFFFFF;
    }

    .navbar .nav > li > a:focus,
    .navbar .nav > li > a:hover {
        background-color: #E6E6E6;
        color: #000000;
    }*/

/*.dropdown-menu li > a:hover,
.dropdown-menu li > a:focus,
.dropdown-submenu:hover > a {
    background-image: none;
    background-color: #E6E6E6;
    color: #000000;
}*/

/*body {
    font-family: 'Open Sans', 'DejaVu Sans', 'Segoe UI', Helvetica, Tahoma, sans-serif;
    font-size: 9pt;
    font-stretch: normal;
    font-style: normal;
    font-weight: normal;
    line-height: 13pt;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
    color: #333333;
    vertical-align: baseline;
}*/


.nav > li > a {
    color: #E2001A;
    font-weight: bold;
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
    background-color: #E2001A;
}


.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
    background-color: #E2001A;
    color: #FFFFFF;
}

.dropdown-header {
    font-size: 8pt;
    font-weight: bold;
    text-transform: uppercase;
}

/*.navbar .nav li.open.dropdown > .dropdown-toggle,
.navbar .nav li.active.dropdown > .dropdown-toggle,
.navbar .nav li.active.open.dropdown > .dropdown-toggle {
    background-color: #E2001A;
    color: #FFFFFF;
}*/

/*.dropdown-menu .active > a,
.dropdown-menu .active > a:hover {
    background-image: none;
    background-color: #E2001A;
}*/

/*.navbar .brand {
    display: inline-block;
    float: none;
    padding: 0;
    margin: 0;
}*/
/*#endregion*/

/*#region ==== ADJUSTED STYLES - LAYOUT ===================================== */
body {
    background-image: url( "images/background.png" );
    background-attachment: scroll;
    background-position: left -400px;
    background-repeat: repeat-x;
}

.container {
    position: relative;
    background-color: #FFFFFF;
    border-color: #E0E0E0;
    border-width: 0 1px;
    border-style: solid;
    /*width: 960px !important;*/
}

    .container.sc-header {
    }

    .container.sc-content {
        border-width: 0 1px 1px 1px;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
/*#endregion*/


#pdf {
    display: block;
    position: absolute;
    top: -48px;
    right: 116px;
    bottom: auto;
    left: auto;
    width: 40px;
    height: 34px;
}


.sc-inline {
    white-space: nowrap;
}



.welcome {
    color: #E2001A;
    text-align: center;
    padding: 0 32px 0 12px;
}

    .welcome b {
        display: block;
        font-size: 13pt;
        font-weight: bold;
    }

    .welcome u {
        display: block;
        font-size: 9pt;
        text-decoration: none;
    }



.member-login {
    width: 360px;
    margin: 0;
    padding: 8px;
    border-color: #E2001A;
    border-style: solid;
    border-width: 4px;
    border-radius: 8px;
}



ul {
    list-style-position: inside;
}



ol {
    list-style-type: none;
    clear: both;
}

    ol > li {
        counter-increment: counter;
        display: block;
        overflow: hidden;
    }

        ol > li:before {
            content: counter(counter) ')';
            display: block;
            float: left;
            font-weight: bold;
            width: 2em;
        }

    ol.custom:first-child {
        counter-reset: counter;
    }



.btn-group-justified {
    display: block;
}



.large-button {
    display: block;
    position: relative;
    margin: 0 4px 4px 4px;
    padding: 8px;
    background-color: #E6E6E6;
    border-color: #AAAAAA;
    border-style: solid;
    border-width: 0 0 0 1px;
    border-radius: 8px;
    color: #E2001A;
    font-size: 11pt;
    text-align: center;
    letter-spacing: 0.5pt;
}

    .large-button + .large-button {
        margin-top: 8px;
    }

    .large-button:hover {
        color: #000000;
        text-decoration: none;
        cursor: pointer;
    }

    .large-button:after {
        content: "";
        display: block;
        position: absolute;
        top: 100%;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1;
        /*box-shadow: <inset*> <offset-x> <offset-y> <blur-radius*> <spread-radius*> <color*>;*/
        box-shadow: 0 0 3px 1px #777777;
    }

    .large-button p {
        margin: 0;
        padding: 0;
        white-space: nowrap;
    }

    .large-button b {
        display: block;
        font-size: 13pt;
        font-weight: bold;
        text-decoration: none;
    }

    .large-button u {
        display: block;
        font-size: 9pt;
        font-weight: normal;
        text-decoration: none;
    }

    .large-button i {
        width: 20px;
        height: 20px;
        background-color: #F6F6F6;
        background-image: url( "images/arrows.png" );
        background-attachment: scroll;
        background-repeat: no-repeat;
        border-radius: 8px;
        box-shadow: -1px 1px 3px 0 #7F7F7F;
    }

        .large-button i.left {
            background-position: left top;
        }

        .large-button i.right {
            background-position: right top;
        }

    .large-button:hover i.left {
        background-position: left bottom;
    }

    .large-button:hover i.right {
        background-position: right bottom;
    }



.contact-info {
    font-weight: normal;
    color: #000000;
}

    .contact-info p {
        margin: 4px 0;
    }

    .contact-info .highlight {
        font-weight: bold;
    }

    .contact-info .desc {
        color: #7F7F7F;
    }



textarea {
    resize: none;
}



/*#region ====[ FONT SIZE ]==== */
.font-xl {
    font-size: 140% !important;
}

.font-lg {
    font-size: 120% !important;
}

.font-md {
    font-size: 100% !important;
}

.font-sm {
    font-size: 80% !important;
}

.font-xs {
    font-size: 60% !important;
}
/*#endregion*/

/*#region ====[ MARGIN ]==== */

/*#region ====[ NO-MARGIN ]====  */
.no-margin {
    margin: 0 !important;
}

.no-margin-top {
    margin-top: 0 !important;
}

.no-margin-right {
    margin-right: 0 !important;
}

.no-margin-bottom {
    margin-bottom: 0 !important;
}

.no-margin-left {
    margin-left: 0 !important;
}
/*#endregion*/

/*#region ====[ MARGIN-4 ]====  */
.margin-4 {
    margin: 4px !important;
}

.margin-top-4 {
    margin-top: 4px !important;
}

.margin-right-4 {
    margin-right: 4px !important;
}

.margin-bottom-4 {
    margin-bottom: 4px !important;
}

.margin-left-4 {
    margin-left: 4px !important;
}
/*#endregion*/

/*#region ====[ MARGIN-8 ]====  */
.margin-8 {
    margin: 8px !important;
}

.margin-top-8 {
    margin-top: 8px !important;
}

.margin-right-8 {
    margin-right: 8px !important;
}

.margin-bottom-8 {
    margin-bottom: 8px !important;
}

.margin-left-8 {
    margin-left: 8px !important;
}
/*#endregion*/

/*#region ====[ MARGIN-12 ]====  */
.margin-12 {
    margin: 12px !important;
}

.margin-top-12 {
    margin-top: 12px !important;
}

.margin-right-12 {
    margin-right: 12px !important;
}

.margin-bottom-12 {
    margin-bottom: 12px !important;
}

.margin-left-12 {
    margin-left: 12px !important;
}
/*#endregion*/

/*#region ====[ MARGIN-16 ]====  */
.margin-16 {
    margin: 16px !important;
}

.margin-top-16 {
    margin-top: 16px !important;
}

.margin-right-16 {
    margin-right: 16px !important;
}

.margin-bottom-16 {
    margin-bottom: 16px !important;
}

.margin-left-16 {
    margin-left: 16px !important;
}
/*#endregion*/

/*#region ====[ MARGIN-5 ]====  */
.margin-5 {
    margin: 5px !important;
}

.margin-top-5 {
    margin-top: 5px !important;
}

.margin-right-5 {
    margin-right: 5px !important;
}

.margin-bottom-5 {
    margin-bottom: 5px !important;
}

.margin-left-5 {
    margin-left: 5px !important;
}
/*#endregion*/

/*#region ====[ MARGIN-10 ]====  */
.margin-10 {
    margin: 10px !important;
}

.margin-top-10 {
    margin-top: 10px !important;
}

.margin-right-10 {
    margin-right: 10px !important;
}

.margin-bottom-10 {
    margin-bottom: 10px !important;
}

.margin-left-10 {
    margin-left: 10px !important;
}
/*#endregion*/

/*#region ====[ MARGIN-15 ]====  */
.margin-15 {
    margin: 15px !important;
}

.margin-top-15 {
    margin-top: 15px !important;
}

.margin-right-15 {
    margin-right: 15px !important;
}

.margin-bottom-15 {
    margin-bottom: 15px !important;
}

.margin-left-15 {
    margin-left: 15px !important;
}
/*#endregion*/

/*#region ====[ MARGIN-20 ]====  */
.margin-20 {
    margin: 20px !important;
}

.margin-top-20 {
    margin-top: 20px !important;
}

.margin-right-20 {
    margin-right: 20px !important;
}

.margin-bottom-20 {
    margin-bottom: 20px !important;
}

.margin-left-20 {
    margin-left: 20px !important;
}
/*#endregion*/

/*#endregion*/

/*#region ====[ PADDING ]==== */

/*#region ====[ NO-PADDING ]====  */
.no-padding {
    padding: 0 !important;
}

.no-padding-top {
    padding-top: 0 !important;
}

.no-padding-right {
    padding-right: 0 !important;
}

.no-padding-bottom {
    padding-bottom: 0 !important;
}

.no-padding-left {
    padding-left: 0 !important;
}
/*#endregion*/

/*#region ====[ PADDING-4 ]====  */
.padding-4 {
    padding: 4px !important;
}

.padding-top-4 {
    padding-top: 4px !important;
}

.padding-right-4 {
    padding-right: 4px !important;
}

.padding-bottom-4 {
    padding-bottom: 4px !important;
}

.padding-left-4 {
    padding-left: 4px !important;
}
/*#endregion*/

/*#region ====[ PADDING-8 ]====  */
.padding-8 {
    padding: 8px !important;
}

.padding-top-8 {
    padding-top: 8px !important;
}

.padding-right-8 {
    padding-right: 8px !important;
}

.padding-bottom-8 {
    padding-bottom: 8px !important;
}

.padding-left-8 {
    padding-left: 8px !important;
}
/*#endregion*/

/*#region ====[ PADDING-12 ]====  */
.padding-12 {
    padding: 12px !important;
}

.padding-top-12 {
    padding-top: 12px !important;
}

.padding-right-12 {
    padding-right: 12px !important;
}

.padding-bottom-12 {
    padding-bottom: 12px !important;
}

.padding-left-12 {
    padding-left: 12px !important;
}
/*#endregion*/

/*#region ====[ PADDING-16 ]====  */
.padding-16 {
    padding: 16px !important;
}

.padding-top-16 {
    padding-top: 16px !important;
}

.padding-right-16 {
    padding-right: 16px !important;
}

.padding-bottom-16 {
    padding-bottom: 16px !important;
}

.padding-left-16 {
    padding-left: 16px !important;
}
/*#endregion*/

/*#region ====[ PADDING-5 ]====  */
.padding-5 {
    padding: 5px !important;
}

.padding-top-5 {
    padding-top: 5px !important;
}

.padding-right-5 {
    padding-right: 5px !important;
}

.padding-bottom-5 {
    padding-bottom: 5px !important;
}

.padding-left-5 {
    padding-left: 5px !important;
}
/*#endregion*/

/*#region ====[ PADDING-10 ]====  */
.padding-10 {
    padding: 10px !important;
}

.padding-top-10 {
    padding-top: 10px !important;
}

.padding-right-10 {
    padding-right: 10px !important;
}

.padding-bottom-10 {
    padding-bottom: 10px !important;
}

.padding-left-10 {
    padding-left: 10px !important;
}
/*#endregion*/

/*#region ====[ PADDING-15 ]====  */
.padding-15 {
    padding: 15px !important;
}

.padding-top-15 {
    padding-top: 15px !important;
}

.padding-right-15 {
    padding-right: 15px !important;
}

.padding-bottom-15 {
    padding-bottom: 15px !important;
}

.padding-left-15 {
    padding-left: 15px !important;
}
/*#endregion*/

/*#region ====[ PADDING-20 ]====  */
.padding-20 {
    padding: 20px !important;
}

.padding-top-20 {
    padding-top: 20px !important;
}

.padding-right-20 {
    padding-right: 20px !important;
}

.padding-bottom-20 {
    padding-bottom: 20px !important;
}

.padding-left-20 {
    padding-left: 20px !important;
}
/*#endregion*/

/*#endregion*/


.sc-overview {
    margin: 0;
    padding: 0;
    list-style: none;
    border-color: #AAAAAA;
    border-style: solid;
    border-width: 1px;
}

    .sc-overview > li {
        background-color: #EEEEEE;
    }

        .sc-overview > li:nth-child(odd) {
            background-color: #DDDDDD;
        }

        .sc-overview > li + li {
            border-color: #AAAAAA;
            border-style: solid;
            border-width: 1px 0 0 0;
        }

    .sc-overview .sc-summary {
        margin: 0;
        padding: 16px;
        font-weight: bold;
    }

        .sc-overview .sc-summary.has-content {
            cursor: pointer;
        }

            .sc-overview .sc-summary.has-content:hover {
                background-color: #99CCFF;
            }

    .sc-overview .sc-details {
        margin: 0;
        padding: 16px;
        border-color: #AAAAAA;
        border-style: solid;
        border-width: 1px 0 0 0;
        background-color: #CCCCCC;
        background-image: none;
    }

        .sc-overview .sc-details > * + * {
            margin-top: 16px;
        }

    .sc-overview .sc-notes > ol,
    .sc-overview .sc-labels > ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .sc-overview .sc-notes > ol,
        .sc-overview .sc-labels > ul > li {
            margin: 0;
            padding: 16px;
            border-color: #AAAAAA;
            border-style: solid;
            border-width: 1px;
            background-color: #FFFFFF;
            background-image: none;
        }

            .sc-overview .sc-labels > ul > li + li {
                margin-top: 16px;
            }

    .sc-overview .sc-product i {
        margin-left: 8px;
    }

.flip-horizontal {
    -moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

#product-overview .sc-filters {
    display: block;
}

.sc-label {
    position: relative;
}

.sc-label-print {
    position: absolute;
    top: 16px;
    right: 16px;
    bottom: auto;
    left: auto;
    z-index: 1;
}

.preserve-newlines {
    white-space: pre-line;
}

@media print {
    body {
        background-color: #FFFFFF;
        background-image: none;
    }

    .printable {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: 0;
        padding: 0;
        background-color: #FFFFFF;
        background-image: none;
        border-color: transparent;
        border-style: none;
        border-width: 0;
        color: #000000;
    }

    .sc-label-print {
        display: none;
    }
}
