body, html {
    height: 100%;
    margin: 0px;
    padding: 0px;
    background: #eee;
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif
}

#siteWrapper {
    width: 100%;
    height: 100%;
}

#menuWrapper {
    position: relative;
    width: 17%;
    box-sizing: border-box;
    float: left;
    height: 100%;
    background: #001A33;
    z-index: 1000;
}

#resultsWrapper {
    width: 83%;
    padding: 0 8px 8px 8px;
    box-sizing: border-box;
    float: left;
    height: 100%;
    overflow-y: scroll;
}

#profileWrapper {
    position: absolute;
    width: 83%;
    box-sizing: border-box;
    right: 0px;
    bottom: 0px;
    height: 0%;
    background: #ccc;
    border-top: #4B5BA9 1px solid;
    overflow: hidden;
    box-shadow: #000 0 0 12px 2px;
    z-index: 10000;
}

#main-menu-wrap, #login-wrap {
    background: #FFF;
}

#login-wrap {
    padding-bottom: 300px;
}

#copyPageToken {
    color: #545DFF;
    text-decoration: underline;
    cursor: pointer;
    transition: all ease-in-out 180ms;
}

#copyPageToken:hover {
    color: #3A2FC1;
}

.errorNotes {
    color: #df3023;
    font-size: 13px;
}


/* =============== Loading ================== */
#expandingCheckmark {
    position: absolute;
    top: 180px;
    left: 50%;
    margin-left: -100px;
    width: 416px;
    height: 330px;
    background: url('../images/checkmark_large.png') no-repeat;
    background-size: 100%;
    background-position: center;
    transform: scale(0.4);
    opacity: 0;
    display: none;
    z-index: 100000;
    transition: all ease-in-out 1000ms;
}

#expandingCheckmark.play {
    top: 180px;
    margin-left: -100px;
    transform: scale(1.3);
    opacity: 1;
}

#expandingCheckmark.play.fade {
    top: 180px;
    margin-left: -100px;
    transform: scale(2.0);
    opacity: 0;
}

#loadingPageOverlay {
    display: none;
    width: 280px;
    padding: 12px;
    position: absolute;
    top: 220px;
    left: 50%;
    margin: 100px 0 0 0;
    z-index: 100;
    border: #5B5B5B 1px solid;
    border-radius: 5px;
    background: #fff;
    text-align: center;
    box-sizing: border-box;
    box-shadow: #000 0 0 10px -3px;
    opacity: 0.8;
    z-index: 100000;
}

#loadingOverlayText {
    text-align: center;
    width: 100%;
    padding: 0 0 12px 0;
    box-sizing: border-box;
}

#loadingOverlayLoader {
    display: block;
    width: 100%;
    height: 40px;
    background: url('../images/horz_loader_blue.gif');
    background-repeat: no-repeat;
    border-radius: 8px;
}

#loadingModulesWrap {
    position: absolute;
    left: 50%;
    margin-left: 0px;
    top: 400px;
    border: #9F9F9F 1px solid;
    box-shadow: #111 0 0 10px -2px;
    display: none;
    z-index: 100000;
}

#loadingModules {
    padding: 10px 60px;
    background: #fff;
}


.logo {
    padding: 8px 0 0;
    background: #000;
    margin-bottom: 22px;
}


#previous_versions_popup {
    position: absolute;
    display: none;
    width: 700px;
    left: 50%;
    margin-left: -210px;
    top: 150px;
    z-index: 1000001;
}

.popup-title {
    background: #001A33;
    padding: 5px 8px;
    color: #fff;
    border-radius: 5px 5px 0 0;
}

.popup-body {
    background: #fff;
    border: #001A33 1px solid;
    border-radius: 0 0 5px 5px;
    padding: 8px;
    max-height: 600px;
}

.popup-close {
    position: absolute;
    right: 2px;
    top: 1px;
    color: #fff;
    display: block;
    padding: 2px 10px 6px 10px;
    cursor: pointer;
    transform: rotate(0deg);
    transition: all ease-in-out 400ms;
    z-index: 1000;
}

.popup-close:hover {
    transform: rotate(180deg);
}

.popup-loader {
    width: 150px;
    height: 150px;
    display: block;
    position: relative;
    left: 50%;
    margin: 25px 0 25px -75px;
    background: url('../images/spinner2.gif');
    background-size: 100%;
    background-repeat: no-repeat;
    z-index: 10000;
}

.popup_list_item {
    display: inline-block;
    box-sizing: border-box;
    padding: 6px;
}

.popup_list_item.linkable {
    text-decoration: underline;
    cursor: pointer;
    color: #222;
    transition: all ease-in-out 180ms;
}

.popup_list_item.linkable:hover {
    color: #bbb;
}


.search_indicator_icon_wrapper {
    display: inline-block; /*background:#dfdfdf;*/
    border-right: #cfcfcf 1px solid;
    padding: 2px 4px;
}

.cc_empty {
    display: inline-block;
    margin: 0 0 -5px 0px;
    width: 22px;
    height: 20px;
    background: url('../images/no_billing_info.png');
    background-repeat: no-repeat;
    background-size: 20px;
}

.recurring_billing_icon {
    display: inline-block;
    margin: 0 0 -5px 0px;
    width: 22px;
    height: 20px;
    background: url('../images/recurring_billing_icon.png');
    background-repeat: no-repeat;
    background-size: 20px;
}

.info-icon {
    display: inline-block;
    background-image: url('../images/infoIcon.png');
    background-size: 100%;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    margin: -3px 0 0 0px;
    vertical-align: middle;
}

.demoModeIcon {
    display: inline-block;
    background-image: url('../images/demoModeIcon.png');
    background-size: 100%;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    margin: -3px 0 0 0px;
    vertical-align: middle;
}


.popup-loader {
    width: 150px;
    height: 150px;
    display: block;
    position: relative;
    left: 50%;
    margin: 25px 0 25px -75px;
    background: url('../images/spinner2.gif');
    background-size: 100%;
    background-repeat: no-repeat;
    z-index: 10000;
}

#resultsReady {
    width: 500px;
    height: 450px;
    position: relative;
    top: calc(50% - 300px);
    left: 50%;
    margin-top: -33px;
    margin-left: -256px;
    background: url('../images/CWZ_Suare.svg') no-repeat;
}

#resultsReadyTxt {
    position: absolute;
    bottom: -135px;
    left: 0px;
    font-size:16px;
    font-weight: bolder;
    color: #4B5BA9;
}

.loadContent-loader {
    width: 250px;
    height: 250px;
    position: relative;
    top: 50%;
    left: 50%;
    margin: -125px 0 0 -125px;
    background: url('../images/spinner2.gif');
    background-size: 100%;
    background-repeat: no-repeat;
    z-index: 100;
}

.loadContent-loader-list-items, #profileReady, #popup-loader {
    width: 250px;
    height: 250px;
    position: relative;
    top: 50%;
    left: 50%;
    margin: 25px 0 0 -125px;
    background: url('../images/spinner2.gif');
    background-size: 100%;
    background-repeat: no-repeat;
    z-index: 49999;
}

#profileReady {
    margin-top: 120px;
}

.appendDate {
    margin: 0 0 0 10px;
    vertical-align: middle;
    cursor: pointer;
}


#opac-background {
    position: fixed;
    width: 100%;
    top: 0px;
    height: 1600px;
    z-index: 50000;
    background: rgba(0, 0, 0, 0.7);
    display: none;
}

#popup-wrapper, #intake-wrapper, #add-contractor-wrapper {
    position: fixed;
    width: 600px;
    top: 120px;
    left: 50%;
    margin-left: -300px;
    z-index: 50001;
    display: none;
    box-shadow: #000 0 0 10px 0px;
    border-radius: 6px;
}

#intake-wrapper {
    z-index: 60002;
    top: 110px;
}

#add-contractor-wrapper {
    top: 200px;
    z-index: 1003;
    border: #001A33 1px solid;
    background: #eee;
    width: 300px;
    margin-left: -150px;
    padding: 8px;
}


#warning-wrapper {
    position: fixed;
    width: 400px;
    background: #eee;
    padding: 0px;
    bottom: 8px;
    right: 8px;
    z-index: 50003;
    display: none;
    box-shadow: #000 0 0 10px 0px;
    border-radius: 6px;
}

#warning-body {
    background: #fff;
    background-image: url('../images/content-box-body-BG.png');
    border: #001A33 1px solid;
    border-radius: 0 0 5px 5px;
    padding: 8px;
    max-height: 600px;
}

#warning-body {
    border: #C10000 1px solid;
}

#warning-title {
    background: #C10000;
    padding: 5px 8px;
    color: #fff;
    border-radius: 5px 5px 0 0;
}


#tbd-wrapper {
    position: fixed;
    width: 400px;
    background: #eee;
    padding: 0px;
    bottom: 8px;
    right: 8px;
    z-index: 50003;
    display: none;
    box-shadow: #000 0 0 10px 0px;
    border-radius: 6px;
}

#tbd-body {
    background: #fff;
    background-image: url('../images/content-box-body-BG.png');
    border: #001A33 1px solid;
    border-radius: 0 0 5px 5px;
    padding: 8px;
    max-height: 600px;
}

#tbd-body {
    border: #DFE362 1px solid;
}

#tbd-title {
    background: #DFE362;
    padding: 5px 8px;
    color: #222;
    border-radius: 5px 5px 0 0;
}

#tbd-close {
    position: absolute;
    right: 2px;
    top: 1px;
    color: #222;
    display: block;
    padding: 2px 10px 6px 10px;
    cursor: pointer;
    transform: rotate(0deg);
    transition: all ease-in-out 400ms;
}

#popup-title, #intake-title {
    background: #001A33;
    padding: 5px 8px;
    color: #fff;
    border-radius: 5px 5px 0 0;
}

#popup-body, #intake-body { /*background:#eee;*/
    background: #fff;
    background-image: url('../images/content-box-body-BG.png');
    border: #001A33 1px solid;
    border-radius: 0 0 5px 5px;
    padding: 8px;
    max-height: 600px;
    overflow-x: scroll;
}

#popup-close, #intake-close, #warning-close {
    position: absolute;
    right: 2px;
    top: 1px;
    color: #fff;
    display: block;
    padding: 2px 10px 6px 10px;
    cursor: pointer;
    transform: rotate(0deg);
    transition: all ease-in-out 400ms;
}

#popup-close:hover, #intake-close:hover, #warning-close:hover, #tbd-close:hover {
    transform: rotate(180deg);
}

#popup-loader {
    position: absolute;
    margin-top: -120px;
    display: none;
}

.description {
    font-size: 13px;
    font-weight: bold;
    padding: 10px 5px 5px;
    color: #555;
    position: relative;
}

#add-contractor-loader {
    width: 50px;
    height: 50px;
    position: relative;
    float: left;
    background: url('../images/spinner2.gif');
    background-size: 100%;
    background-repeat: no-repeat;
    padding: 8px;
    box-sizing: border-box;
}

#add-contractor-content {
    float: left;
    width: 250px;
    padding: 15px 8px;
    box-sizing: border-box;
    text-align: center;
    font-size: 12px;
}

.notePopupWrap {
    position: relative;
    z-index: 9000;
}

.notePopupWrap-Bottom {
    position: relative;
    z-index: 9000;
}

.notePopup {
    display: inline-block;
    position: absolute;
    bottom: 35px;
    left: 50%;
    margin-left: -225px;
    width: 250px;
    background: #eee;
    border: #4B5BA9 4px solid;
    border-radius: 6px;
    padding: 8px;
    box-shadow: #000 0px 0px 12px -1px;
    z-index: 9001;
}

.notePopup-Bottom {
    display: inline-block;
    position: absolute;
    top: 36px;
    left: 50%;
    margin-left: -225px;
    width: 250px;
    background: #eee;
    border: #4B5BA9 4px solid;
    border-radius: 6px;
    padding: 8px;
    box-shadow: #000 0px 0px 12px -1px;
    z-index: 9001;
}

.clickForNotes {
    opacity: 1;
    transition: all ease-in-out 150ms;
}

.clickForNotes:hover {
    opacity: 0.7;
    cursor: pointer;
}

.hasQC {
    background-color: #dd912a !important;
    border-radius: 4px;
    color: #FFF !important;
    padding: 5px !important;
}

.hasQC:hover {
    background-color: #317ba8 !important;
}

.num-of-qc {
    position: absolute;
    right: 15px;
}

.selectLoader {
    background-image: url('/images/spinner.gif');
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-position: center;
    color: #ddd;
}

.date-picker {
    display: block;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 5px;
    left: 150px;
    border: none;
    text-indent: -9999px;
    background: transparent;
    background-image: url('../images/datepicker.png');
    background-size: 15px 15px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.loadMenu {
    width: 100px;
    height: 100px;
    background: url('../images/spinner2.gif');
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    left: 50%;
    margin: 300px auto 0px -50px;
    z-index: -1;
}

.details-quick-links {
    display: inline-block;
    width: 190px;
    padding: 5px;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    color: #333;
}

.details-quick-links:hover {
    background-color: #C9C6C6;
}

.linkbot {
    background-image: url('../images/bot_icon.png');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 15px;
}

.mobileview {
    background-image: url('../images/mobile_icon.png');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 15px;
}

/*.hasnotes { background:#E4CBA3 !important; }
.hasnotes-Bottom { background:#E4CBA3 !important; }*/
#opac_background_with_loader {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 1);
    width: 100%;
    height: 100%;
    z-index: 20000;
    display: none;
}


#login-wrap {
    display: none;
}

.error {
    display: none;
    font-size: 12px;
    color: #D85759;
    padding: 8px;
}

.button-loader {
    display: inline-block;
    width: 14px;
    height: 13px;
    background: url('../images/loading.gif') no-repeat;
    background-size: 16px 16px;
    background-position: center;
}

.button-error {
    display: inline-block;
    width: 14px;
    height: 13px;
    background: url('../images/deleteIcon.png') no-repeat;
    background-size: 16px 16px;
    background-position: center;
    opacity: 1;
    transition: all ease-in-out 150ms;
}

.button-error:hover {
    cursor: pointer;
    opacity: 0.7;
}

.button-finished {
    display: inline-block;
    width: 14px;
    height: 13px;
    background: url('../images/checkmark.png') no-repeat;
    background-size: 16px 16px;
    background-position: center;
}

.display-none {
    display: none;
}


/*Content wrapper*/
.content-box-wrap {
    padding: 8px;
    position: relative;
}

.content-box-title, #profileWrapper-title {
    padding: 8px 20px;
    color: #FFF;
    background: #333;
    border-radius: 4px 4px 0 0;
}

#profileWrapper-title {
    border-radius: 0;
}

.content-box-body {
    padding: 8px;
    border: #333 1px solid;
    background: #fff;
    background-image: url('../images/content-box-body-BG.png');
    border-radius: 0 0 4px 4px;
}

.content-box-toggle {
    position: absolute;
    display: block;
    padding: 8px 10px 4px 10px;
    right: 23px;
    top: 3px;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
    transition: color ease-in-out 150ms;
}

.content-box-toggle:hover {
    color: #ccc;
}

#profileWrapper-close {
    position: absolute;
    display: block;
    padding: 8px 10px 4px 10px;
    right: 15px;
    top: -10px;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
    transition: color ease-in-out 150ms;
}

#profileWrapper-close:hover {
    color: #ccc;
}


/*Menu Wrapper*/
#main-menu-wrap {
    display: none;
}

#menuWrapper {
}

.menuItemWrapper {
    margin: 12px 8px 32px 8px;
    border-top: #003060 3px solid;
}

.menuItemTitle {
    color: #002D59;
    position: absolute;
    display: inline-block;
    background: #FFF;
    padding: 0 10px;
    margin: -11px 0 0 8px;
    font-size: 14px;
    font-weight: bold;
}

.menuItemContent {
    margin: 12px 0 0 0;
    box-sizing: border-box;
}

.menuItemContent ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.menuItemContent ul li {
    padding: 3px 0 3px 35px;
    color: #001A33;
    font-size: 14px;
    border-bottom: #DDD 1px dotted;
    transition: all ease-in-out 150ms;
    background: #FFF;
    list-style: none;
}

.menuItemContent ul li:last-child {
    border-bottom: none
}

.menuItemContent ul li:hover {
    cursor: pointer;
    background: #dd912a;
    color: #FFF;
}

#menu-quickSearch {
}

#menu-addAccount {
}

#menu-tools {
}

#menu-qualityControl {
}

/* ====== Search ====== */
#dataTypeSelection {
    padding: 0;
    margin: 0 0 6px 0;
    width: 100%;
}

#dataTypeSelection li {
    display: inline-block;
    margin: 0;
    border-right: #001A33 1px solid;
    width: auto;
    padding: 2px;
    background: #002D59;
    box-sizing: border-box;
}

#dataTypeSelection li:last-child {
    border-right: none;
    padding: 2px 2px 3px 2px;
}

#dataTypeSelection li div {
    font-size: 10px;
    padding: 5px;
    background: #002D59;
    transition: all ease-in-out 150ms;
}

#dataTypeSelection li:hover {
    background: #0053A6;
}

#contractorTypeSelection {
    display: none;
}

#contractorTypeSelection label {
    font-size: 11px;
    color: #fff;
    cursor: pointer;
}

#contractorTypeSelection input {
    width: 11px;
    height: 11px;
}

#searchWrap {
    width: 100%;
    margin: 8px 0 0 0;
    box-sizing: border-box;
}

#searchWrap input, #searchWrap .search-button {
    float: left;
    box-sizing: border-box;
}

#searchWrap input {
    width: 80%;
}

#searchWrap .search-button { /*width:18%;*/
    margin: 0 0 0 5px;
}

.qs-nav-item {
    background: #0053A6 !important;
}

.qs-nav-item:hover {
    background: #0053A6 !important;
}


/* === Iconsv === */
.menuItemContent ul li {
    background-repeat: no-repeat !important;
    background-size: 15px !important;
    background-position: 10px 5px !important;
    width: 49%;
    box-sizing: border-box;
    margin: 0 1px;
}

#addAccount-Contractor {
    background-image: url('../images/contractorIcon.png');
}

#addAccount-Territory {
    background-image: url('../images/territoryIcon.png');
}

#addAccount-Regional {
    background-image: url('../images/RegionalIcon.png');
}

#responsiveConversions {
    background-image: url('../images/responsive_icon.png');
}

#tools-query {
    background-image: url('../images/query_icon.png');
}


/* === Lists/Tables === */
.trRow-even, .trRow-odd, .trRow-even-full, .trRow-odd-full, .trRow-flagged, .trRow-odd-dark, .reusable-trRow-even, .reusable-trRow-odd {
    background: transparent;
    opacity: 1;
    padding: 1px 0 1px 8px;
    display: block;
    transition: all ease-in-out 180ms;
    border-bottom: #d4d4d4 1px dashed;
}

.reusable-trRow-locked {
    background-color: #efefef;
    opacity: 0.7;
    padding: 1px 0 1px 8px;
    display: block;
    border-bottom: #fff 1px solid;
    transition: all ease-in-out 180ms;
    background-image: url('../images/lock_blue.png');
    background-position: right;
    background-repeat: no-repeat;
}

.reusable-trRow-locked:hover {
    background-color: #ededed;
}

.unlock_section_handle {
    position: absolute;
    right: 20px;
    display: inline-block;
    width: 30px;
    height: 36px;
    background-image: url('../images/lock_blue.png');
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}


.trRow-even {
}

.trRow-odd {
    background: #eee;
}

.trRow-odd-dark {
    background: #e6e6e6;
}

.trRow-flagged {
    background: #FFE1BD;
    border-bottom: #fff 1px dotted;
}

.trRow-flagged:hover {
    background: #FFD199;
}

.trRow-even-full:hover, .trRow-odd-full:hover {
    background: #dfdfdf;
}

.trRow-even:hover, .trRow-odd:hover, .trRow-odd-dark:hover { /*background:#ddd;*/
    background: linear-gradient(#dfdfdf 42px, transparent 42px, transparent);
}

.reusable-trRow-even:hover, .reusable-trRow-odd:hover { /*background:#f0f0f0;*/
    background: linear-gradient(#efefef 42px, transparent 42px, transparent);
}

.float-right {
    float: right !important;
}

.text-align-center {
    text-align: center !important;
}

.text-align-right {
    text-align: right !important;
}

.bold {
    font-weight: bold !important;
    color: #555 !important;
}

.wf-sortItem, .search-sortItem, .mgr-details {
    text-decoration: underline !important;
}

.wf-sortItem:hover, .search-sortItem:hover, .mgr-details:hover {
    color: #222 !important;
    cursor: pointer !important;
}

.contractor {
    text-decoration: underline;
    cursor: pointer;
    opacity: 1;
    transition: all ease-in-out 150ms;
}

.contractor:hover {
    opacity: 0.8;
}

.form-wrapper td td {
    padding: 3px;
    border-bottom: #bbb 1px dotted;
}

.form-wrapper td tr {
    background: transparent;
    transition: all ease-in-out 150ms;
}

.form-wrapper td tr:hover {
    background: #d9d9d9;
}

.form-wrapper td td input, .form-wrapper td textarea {
    padding: 6px;
    border: #bbb 1px solid;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-wrapper td td select {
    padding: 5px;
    border: #bbb 1px solid;
    border-radius: 4px;
    box-sizing: border-box;
}

.item-title {
    float: left;
    border-bottom: #ccc 1px dotted;
    padding: 0 0 8px 0;
}

.item-item {
    float: left;
    display: inline-block;
    border: transparent 1px solid;
    box-sizing: border-box;
}

.item-item-padding {
    padding: 5px;
}

.getAssociatedContractors, .territorymanager, .regionalmanager, .getAssociatedManagers {
    text-decoration: underline;
    cursor: pointer;
}

.getAssociatedContractors:hover, .territorymanager:hover, .regionalmanager:hover, .getAssociatedManagers:hover {
    opacity: 0.8;
}

.isDisabled {
    background: #FF9494;
}

.isDisabled:hover {
    background: #FF9494;
}


/* === Workflow === */
/*.workflowItem2 { float:right; }*/
.vdescr {
    padding: 5px 8px;
    background: #0A3168;
    border: #2C7093 1px solid;
    border-radius: 4px;
    transition: all ease-in-out 180ms;
    cursor: pointer;
}

.vdescr:hover {
    background: #2C7093; /*color:#C3D82B;*/
}

.vdescrRed {
    padding: 5px 8px;
    background: #A51010;
    border: #EC4A4A 1px solid;
    border-radius: 4px;
    transition: all ease-in-out 180ms;
    cursor: pointer;
}

.vdescrRed:hover {
    background: #EA2222;
}

.vdescrGrey {
    padding: 5px 8px;
    background: #222;
    border: #444 1px solid;
    border-radius: 4px;
    transition: all ease-in-out 180ms;
    cursor: pointer;
}

.vdescrGrey:hover {
    background: #444;
}

.vdescrDiv {
    border: #092848 1px solid;
    padding: 12px;
    display: none;
    background: #111;
}

.viewAllWorkflowItems {
    position: relative;
    top: 15px;
    left: 50%;
    margin-left: 730px;
    display: inline-block;
    width: auto;
    color: #fff;
    text-align: right;
}

.viewOpenWorkflowItems {
    position: relative;
    top: 15px;
    left: 50%;
    margin-left: 520px;
    display: inline-block;
    width: auto;
    color: #fff;
    text-align: right;
}

.viewAllWorkflowItems:hover, .viewOpenWorkflowItems:hover {
    color: #D9D900;
    cursor: pointer;
}

.viewType {
    cursor: pointer;
}


/* Contractor Profile */
#contractor-tab-wrap {
    width: 100%;
    background: #4B5BA9;
}

#contractor-tab-wrap div {
    display: inline-block;
    width: auto;
    padding: 8px 20px;
    border-right: #FFF 1px solid;
    color: #fff;
    transition: all ease-in-out 150ms;
    font-weight: bolder;
}

#contractor-tab-wrap div:hover {
    background: #FFF;
    color: #456a91 !important;
    font-weight: bolder;
    cursor: pointer;
}

.load-contractor-details-selected {
    background: #dd912a;
!important;
    color: #FFF !important;
}

#contractor-display-wrap {
    padding: 8px;
    z-index: 7000;
}

#addNotesToLastCalled {
    position: absolute;
    width: 400px;
    top: 200px;
    left: 50%;
    margin-left: -200px;
    display: none;
    z-index: 20000;
}

#getContractorDetails {
    position: absolute;
    width: 400px;
    top: 50px;
    left: 50%;
    margin-left: -500px;
    display: none;
    z-index: 20000;
    box-shadow: #333 0px 0px 5px 0px;
    border-radius: 4px;
}

#getContractorDetails .content-box-wrap {
    padding: 0px;
}

.content-box-close {
    color: #fff;
    font-weight: bold;
    display: inline-block;
    padding: 5px;
    right: 12px;
    top: 2px;
    cursor: pointer;
    font-size: 15px;
    position: absolute;
    transition: all ease-in-out 150ms;
}

.content-box-close:hover {
    opacity: 0.7;
}


/* Backup */
.backupDBBut {
    width: 90%;
    font-size: 17px;
    padding: 8px;
    background: #0A3168;
    border: #2C7093 1px solid;
    border-radius: 4px;
    transition: all ease-in-out 180ms;
    cursor: pointer;
    margin-top: 20px;
    color: #fff;
}

.backupDBBut:hover {
    background: #2C7093; /*color:#C3D82B;*/
}


/* Printable Documents */
.print-document {
    display: inline-block;
    margin: 35px;
    cursor: pointer;
}

.print-document:hover > img {
    opacity: 0.8;
}

.print-document:hover > .print-document-title {
    opacity: 0.8;
}

.print-document img {
    width: 150px;
    opacity: 0.5;
    transition: all ease-in-out 180ms;
}

.print-document-title {
    font-size: 14px;
    color: #000;
    font-weight: bold;
    opacity: 0.5;
    transition: all ease-in-out 180ms;
}


/* Tool Box */
.tb-menu-wrapper {
    position: fixed;
    z-index: 100;
    display: block;
    width: 101%;
    background: #ccc;
    border-bottom: #bbb 1px solid;
    margin-left: -8px;
    top: -100px;
}

.tb-menu {
    display: inline-block;
    padding: 20px 0px;
    width: 12%;
    box-sizing: border-box;
    text-align: center;
    border-right: #bbb 1px dotted;
    transition: all ease-in-out 150ms;
    position: relative;
}

.tb-menu:hover, .tb-selected {
    background: #e5e5e5;
    cursor: pointer;
}

.tb-menu:hover:after, .tb-selected:after {
    content: "";
    width: 0;
    height: 0;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-top: 20px solid #e5e5e5;
    position: absolute;
    top: 60px;
    left: 50%;
    margin-left: -15px;
}

.tb-menu:hover:before, .tb-selected:before {
    content: "";
    width: 0;
    height: 0;
    border-right: 21px solid transparent;
    border-left: 21px solid transparent;
    border-top: 22px solid #bbb;
    position: absolute;
    top: 60px;
    left: 50%;
    margin-left: -16px;
}

.widgetGroupTitle {
    text-align: left;
    padding: 12px;
    color: #333;
    font-size: 16px;
    font-weight: bold;
}

/* Custom CSS/JS */
.widgetTitle {
    float: left;
    display: block;
    width: 35%;
    padding: 9px;
    text-align: left;
    position: relative; /*width:auto;*/
}

.widgetImageView {
    visibility: hidden;
    position: absolute;
    z-index: 5000;
    border-radius: 5px;
    box-shadow: 0 0 14px 3px #000;
    left: 400px;
    transition: visibility ease-in 220ms;
}

.widgetTitle:hover > .widgetImageView {
    visibility: visible;
}

.widgetImageView img {
    max-width: 700px;
}

/*.styleConfigWrap { width:95%; }*/
.styleDetails, .widgetDetails, .contentDetails, .sectionDetails {
    display: none;
    position: relative;
    margin-left: 0;
}


/* Admin Codes */
.ac-menu-wrapper {
    position: fixed;
    z-index: 100;
    display: block;
    width: 101%;
    background: #ccc;
    border-bottom: #bbb 1px solid;
    margin-left: -8px;
    top: -100px;
}

.ac-menu {
    display: inline-block;
    padding: 20px 0px;
    width: 12%;
    box-sizing: border-box;
    text-align: center;
    border-right: #bbb 1px dotted;
    transition: all ease-in-out 150ms;
    position: relative;
}

.ac-menu:hover, .ac-selected {
    background: #e5e5e5;
    cursor: pointer;
}

.ac-menu:hover:after, .ac-selected:after {
    content: "";
    width: 0;
    height: 0;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-top: 20px solid #e5e5e5;
    position: absolute;
    top: 60px;
    left: 50%;
    margin-left: -15px;
}

.ac-menu:hover:before, .ac-selected:before {
    content: "";
    width: 0;
    height: 0;
    border-right: 21px solid transparent;
    border-left: 21px solid transparent;
    border-top: 22px solid #bbb;
    position: absolute;
    top: 60px;
    left: 50%;
    margin-left: -16px;
}


/* Newsletters */
.nl-menu-wrapper {
    position: fixed;
    z-index: 100;
    display: block;
    width: 101%;
    background: #ccc;
    border-bottom: #bbb 1px solid;
    margin-left: -8px;
    top: -100px;
}

.nl-menu {
    display: inline-block;
    padding: 20px 0px;
    width: 12%;
    box-sizing: border-box;
    text-align: center;
    border-right: #bbb 1px dotted;
    transition: all ease-in-out 150ms;
    position: relative;
}

.nl-menu:hover, .nl-selected {
    background: #e5e5e5;
    cursor: pointer;
}

.nl-menu:hover:after, .nl-selected:after {
    content: "";
    width: 0;
    height: 0;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-top: 20px solid #e5e5e5;
    position: absolute;
    top: 60px;
    left: 50%;
    margin-left: -15px;
}

.nl-menu:hover:before, .nl-selected:before {
    content: "";
    width: 0;
    height: 0;
    border-right: 21px solid transparent;
    border-left: 21px solid transparent;
    border-top: 22px solid #bbb;
    position: absolute;
    top: 60px;
    left: 50%;
    margin-left: -16px;
}

/* Stats */
#newsletter_stats_wrapper {
    position: fixed;
    width: 800px;
    min-height: 300px;
    z-index: 5002;
    left: 50%;
    margin-left: -400px;
    top: -820px;
    background: #eee;
    border-radius: 26px;
    border: #CBCBCB 12px solid;
    box-shadow: #000 0 0px 20px 8px;
    opacity: 0;
}

.ns_header {
    background: #9D9D9D;
    padding: 8px;
    color: #fff;
    border-radius: 12px 12px 0 0;
}

.ns_close {
    position: absolute;
    top: 0px;
    right: 10px;
    color: #fff;
    font-size: 19px;
    display: inline-block;
    width: auto;
    padding: 5px;
}

.ns_close:hover {
    color: #bbb;
    cursor: pointer;
}

#newsletter_stats_navigation_wrapper {
    box-sizing: border-box;
    background: #b5b5b5;
}

.newsletter_stats_navigation {
    display: inline-block;
    padding: 9px 20px;
    width: auto;
    border-right: #aaa 1px dotted;
    color: #fff;
    font-size: 12px;
    transition: all ease-in-out 150ms;
}

.newsletter_stats_navigation:hover {
    background: #aaa;
    cursor: pointer;
}

.ns_selected {
    background: #c5c5c5;
}

.ns_selected:hover {
    background: #c5c5c5;
}

#ns_content_wrapper {
    padding: 8px;
}

.ns_section_content {
    display: none;
}

.ns_line_item {
    padding: 10px 4px;
    border-bottom: #ccc 1px dotted;
    background: transparent;
    transition: all ease-in-out 150ms;
}

.ns_line_item:hover {
    background: #e5e5e5;
}

.ns_description, .ns_details {
    float: left;
    width: 40%;
}

.ns_details {
    text-align: right;
}

.clear {
    clear: both;
}

.indicator-wrap {
    display: inline-block;
    width: 200px;
    text-align: right;
    float: right;
    margin-right: -90px;
    margin-top: 0px;
}

.one-link-clicked-indicator, .two-link-clicked-indicator, .three-link-clicked-indicator, .four-link-clicked-indicator, .newsletter-read-indicator {
    background-image: url('../images/newsletterStatsIndicators.png');
    background-repeat: no-repeat;
    display: inline-block;
    width: 27px;
    height: 21px;
    margin: 0 6px;
}

.one-link-clicked-indicator {
    background-position: 0px 0px;
}

.two-link-clicked-indicator {
    background-position: -28px 0px;
}

.three-link-clicked-indicator {
    background-position: -56px 0px;
}

.four-link-clicked-indicator {
    background-position: -84px 0px;
}

.newsletter-read-indicator {
    background-position: -112px 0px;
}


/* Responsive Conversion */
.responsiveWrap {
    width: 100%;
    border-bottom: #2C7093 1px solid;
    border-radius: 5px;
}

.responsiveWrap td {
    text-align: left;
}

.responsiveHeader {
    padding: 8px;
    background: #2C7093;
    font-weight: bold;
}

.responsiveHeader:first-child {
    border-radius: 5px 0 0 0;
}

.responsiveHeader:last-child {
    border-radius: 0 5px 0 0;
}

.responsiveData {
    padding: 8px;
    border-bottom: #104478 1px dashed;
}

.responsiveData:first-child {
    border-left: #2C7093 1px solid;
}

.responsiveData:last-child {
    border-right: #2C7093 1px solid;
}

.responsiveDataRow {
    transition: all ease-in-out 180ms;
}

.responsiveDataRow:hover {
    background: #104074;
}

.asPaidBtn {
    display: block;
    width: 115px;
    background: #1A6600;
    color: #fff;
    border: #1A6600 1px outset;
    padding: 5px;
    border-radius: 4px;
    transition: all ease-in-out 180ms;
    text-align: center;
    font-size: 12px;
}

.asUnPaidBtn {
    display: block;
    width: 115px;
    background: #660000;
    color: #fff;
    border: #660000 1px outset;
    padding: 5px;
    border-radius: 4px;
    transition: all ease-in-out 180ms;
    text-align: center;
    font-size: 12px;
}

.asPaidBtn:hover, .asUnPaidBtn:hover {
    border-style: inset;
    cursor: pointer;
}


/* ================================== */
/* Manual Email */
/* ================================== */
#manualEmail {
    width: 100px;
    position: absolute;
    top: -38px;
    left: -1px;
    cursor: pointer;
}

#automatedEmail {
    width: 120px;
    position: absolute;
    top: -38px;
    left: 120px;
    cursor: pointer;
}

#blackList {
    width: 120px;
    position: absolute;
    top: -38px;
    left: 261px;
    cursor: pointer;
}

#archive {
    width: 120px;
    position: absolute;
    top: -38px;
    left: 402px;
    cursor: pointer;
}

#saved {
    width: 120px;
    position: absolute;
    top: -38px;
    left: 543px;
    cursor: pointer;
}

#contractorList, #tmList, #rmList, #emailListToSend, #contractorListAuto, #tmListAuto, #rmListAuto, #emailListToSendAuto {
    width: 250px;
    height: 200px;
    border: #ddd 1px solid;
    padding: 8px;
}

.emailSelectWrap, .addRemoveWrap { /*float:left;*/
    position: relative;
    display: inline-block;
    width: auto;
    padding: 8px;
    text-align: left;
    min-height: 175px;
    transition: all ease-in-out 280ms;
}

#emailAddRemoveWrap {
    position: relative;
    width: 125px;
    top: -70px;
    min-height: 75px;
}

.emailSelectWrap:hover {
    background: #f9f9f9;
}

.emailSelectWrap input {
    margin: 10px 0;
    display: block;
}

.inputWrap {
    padding-top: 23px;
}

.emailSelectWrap div {
    float: left;
    margin: 0 7px;
}

.emailSelectWrap label, #dateRangeTitle {
    cursor: pointer;
    padding: 3px 5px;
    display: block;
    border-radius: 4px;
    font-size: 13px;
}

.emailSelectWrap label:hover {
    background: #eaeaea;
}

.quickSelectTile {
    display: block;
    background: #222;
    float: left;
    padding: 4px 8px;
    width: 104%;
    box-sizing: border-box;
    position: relative;
    left: -7px;
}

#chooseDateRange input {
    padding: 6px;
    border: #ddd 1px solid;
    border-radius: 4px;
}

#emailBodyWrap {
    text-align: left;
}

/*#emailBodyWrap div { font-weight:bold;padding:8px 0; }*/
/*#emailBodyWrap input, #emailBodyWrap textarea, #emailBodyWrap select, #emailTypeAutoEdit input, #emailTypeAutoEdit textarea, #emailTypeAutoEdit select { padding:6px;border-radius:4px;border:#2C7093 1px solid; }*/
#emailBodyWrap input, #emailBodyWrap textarea, #emailTypeAutoEdit input, #emailTypeAutoEdit textarea {
    width: 97%;
}

#emailBodyWrap textarea, #emailTypeAutoEdit textarea {
    height: 400px;
}

#emailoButtonWrap, #emailoButtonWrapAuto {
    width: 100%;
    margin-top: 10px;
    text-align: right;
}


.emailList .titleOption {
    font-weight: bold;
}

.availOption {
    margin-left: 10px;
}


.emailListTitle {
    display: block;
    margin: 2px;
    clear: both;
    text-align: left;
    font-weight: bold;
}

.sectionTitle {
    font-weight: bold;
    padding: 8px;
    border-bottom: #2C7093 1px dotted;
    text-align: left;
    margin-bottom: 8px;
    color: #2C7093;
}


#emailTitleManual {
    float: left;
    font-style: italic;
    color: #BBB;
    margin: 0 8px 0 0;
}

#saveEmailError {
    float: left;
    margin: 8px 0 0 12px;
    color: #FF7373;
    display: none;
}

#chooseCatOne, #chooseStatus, #chooseTerritory, #chooseRegional, #chooseDateRange, #chooseServices, #chooseIndicators, #chooseCatOneAuto, #chooseStatusAuto, #chooseTerritoryAuto, #chooseRegionalAuto, #chooseDateRangeAuto, #chooseServicesAuto, .chooseHowOftenAuto, #chooseCatOneAutoRecon, #chooseStatusAutoRecon, #chooseServicesAutoRecon, #chooseDateRangeAutoRecon, #chooseHowOftenAutoRecon {
    border-right: #ddd 1px dashed;
    padding: 0 8px 0 0;
    width: auto;
}

#chooseStatus, #chooseTerritory, #chooseRegional, #chooseDateRange, #chooseServices, #chooseIndicators {
    display: none;
}

/*#chooseDateRangeAuto, #chooseServicesAuto, #chooseStatusAuto, .chooseHowOftenAuto*/
.newsletterSaveType {
    position: absolute;
    left: 290px;
    text-align: center;
}


/* ================================== */
/* Automated Email */
/* ================================== */
#addAutoEmail, #addAutoEmailClose {
    position: absolute;
    right: 25px;
    top: 10px;
    cursor: pointer;
    transition: all ease-in-out 180ms;
    width: 130px;
}

#addAutoEmail:hover, #addAutoEmailClose:hover {
    color: #2C7093;
}

#addAutoEmail div, #addAutoEmailClose div {
    padding: 5px;
}

#addAutoEmailClose {
    display: none;
}

#configurationWrap {
    max-height: 1px;
    overflow: hidden;
    transition: all ease-in-out 450ms;
}

.reconfigureAutoBody {
    text-align: center;
}

.question {
    margin: 0 0 0 5px;
    width: 17px;
    position: absolute;
    cursor: pointer;
}

/* Auto Configuration */
.autoConfigWrap, .autoTitle, .manTitle, .styleTitle, .widgetTitle, .contentTitle, .sectionsTitle {
    float: left;
}

.autoUpdateRecon, .autoUpdateEditRecon, .updateClientConfig, .updateClientLang, .updateExtendedInfo, .updateAdminNotes, .updateLoginsInfo {
    margin: 8px;
}

.autoConfig, .autoEdit, .autoDelete, .autoPreview, .autoSendTest, .autoUpdateRecon, .autoUpdateEditRecon, .reinstateEmail, .updateClientConfig, .updateClientLang, .manDelete, .manEdit, .updateExtendedInfo, .updateAdminNotes, .updateLoginsInfo, .styleDelete, .styleEdit, .widgetDelete, .widgetEdit, .contentDelete, .contentEdit, .sectionDelete, .sectionEdit {
    float: right;
}

.autoTitle {
    width: 40%;
    padding: 9px;
    text-align: left;
}

.autoConfigWrap {
    width: 56%;
}

.manTitle, .styleTitle, .widgetTitle, .contentTitle, .sectionsTitle {
    width: 75%;
    padding: 9px;
    text-align: left;
}

.manConfigWrap, .styleConfigWrap, .widgetConfigWrap, .contentConfigWrap, .sectionsConfigWrap {
    width: 95%;
}

/* Auto Email List */
#savedEmails {
    border-top: #2C7093 1px solid;
    margin-top: 40px;
}

.autoEmailTro, .autoEmailTrt {
    position: relative;
    transition: all ease-in-out 100ms;
    padding: 7px;
    margin: 1px 0;
    border-bottom: #2C7093 1px dotted;
}

.autoEmailTrt {
    background: #0a3168;
}

.autoEmailTro {
    background: #061b30;
}

.autoEmailTrt:hover, .autoEmailTro:hover {
    background: #092848;
}

/*.autoDelete, .manDelete, .styleDelete, .widgetDelete, .contentDelete, .sectionDelete*/
{
    margin: 1px 0 0 4px
;
    padding: 8px
;
    border-radius: 5px
;
    border: #FF2626 1px solid
;
    background: #B00000
;
    color: #fff
;
    transition: all ease-in-out 200ms
;
    cursor: pointer
;
    text-decoration: none
;
}
/*.autoDelete:hover, .manDelete:hover, .styleDelete:hover, .widgetDelete:hover, .contentDelete:hover, .sectionDelete:hover*/
{
    background: #FF2626
;
    color: #fff
;
}

/* Popup Configuration */
.popupClass3 {
    width: 772px;
    left: 50%;
    margin-left: -400px;
    top: 250px;
    position: fixed;
    display: none;
    z-index: 1000;
}

.timeSinceCover {
    position: absolute;
    width: 130px;
    height: 175px;
    background: #000;
    top: -0px;
    left: -6px;
    opacity: 0.5;
    z-index: 1000;
}

.chooseDateRangeAuto {
    opacity: 0.3;
    position: relative;
    width: 130px;
}

#emailTypeAutoRecon, #emailTypeAutoEdit {
    padding: 8px;
}


/* Blacklist */
#blackListSelect {
    width: 100%;
    height: 200px;
}

#addBlackListSelect {
    padding: 8px;
}

#addBlackListSelectDiv {
    float: left;
}


/* Recurring Email */
#refbone { /*float:left;*/
    padding: 0 20px 0 0;
    display: inline-block;
    width: auto;
}

#refbtwo { /*float:left;*/
    padding: 0 0 0 20px;
    border-left: #ccc 1px dashed;
    display: inline-block;
    width: auto;
    visibility: hidden;
}

#refbone input {
    border: #ccc 1px solid;
}

#refbtwo select {
    padding: 4px;
    border-radius: 3px;
    border: #ccc 1px solid;
}


#quickSelectWrap, #recurringDateWrap, #emailBodyWrap, #manualSelectWrap {
    background: transparent;
    border-bottom: #ccc 1px dotted;
    padding: 12px;
    transition: all ease-in-out 150ms;
}

#quickSelectWrap:hover, #recurringDateWrap:hover, #emailBodyWrap:hover, #manualSelectWrap:hover {
    background: #eaeaea;
}


/* Pre Leads */
.quoteBubble_notContacted, .quoteBubble_contacted {
    display: inline-block;
    width: 30px;
    height: 22px;
    transition: all ease-in-out 180ms;
}

.quoteBubble_notContacted {
    background-image: url('../images/quoteBubble_greyHover.png');
    background-repeat: no-repeat;
    background-size: 100%;
    opacity: 0.4;
}

.quoteBubble_contacted {
    background-image: url('../images/quoteBubble_green.png');
    background-repeat: no-repeat;
    background-size: 100%;
}

.quoteBubble_notContacted:hover, .quoteBubble_contacted:hover {
    opacity: 1;
    cursor: pointer;
}

.transferLead {
    display: inline-block;
    width: 22px;
    height: 22px;
    transition: all ease-in-out 180ms;
    background-image: url('../images/transfer.png');
    background-repeat: no-repeat;
    background-size: 100%;
    opacity: 0.8;
    margin: 0 10px;
}

.transferLead:hover {
    cursor: pointer;
    opacity: 1;
}

.deletePreLead {
    display: inline-block;
    width: 22px;
    height: 22px;
    transition: all ease-in-out 180ms;
    background-image: url('../images/deleteIcon.png');
    background-repeat: no-repeat;
    background-size: 100%;
    opacity: 0.8;
}

.deletePreLead:hover {
    cursor: pointer;
    opacity: 1;
}

.pre_lead_notes {
    display: inline-block;
    width: 22px;
    height: 22px;
    transition: all ease-in-out 180ms;
    background-image: url('../images/pre_leads_notes.png');
    background-repeat: no-repeat;
    opacity: 0.8;
    margin: 0 0 0 10px;
}

.pre_lead_notes:hover {
    cursor: pointer;
    opacity: 1;
}

.pre_lead_notes.has-notes {
    background-position: 0 0;
}

.pre_lead_notes.no-notes {
    background-position: -22px 0;
}


.staging_complete_flag_red {
    display: inline-block;
    margin: 2px 0 0 5px;
    width: 19px;
    height: 20px;
    background-image: url('../images/staging_complete_flag_red.png');
    background-repeat: no-repeat;
}

.staging_complete_flag_green {
    display: inline-block;
    margin: 2px 0 0 5px;
    width: 19px;
    height: 20px;
    background-image: url('../images/staging_complete_flag_green.png');
    background-repeat: no-repeat;
}


.titleButton, .titleText {
    position: absolute;
    display: inline-block;
    padding: 8px 12px 9px 12px;
    top: 8px;
    left: 50%;
    margin-left: 400px;
    text-decoration: none !important;
    color: #fff;
    transition: all ease-in-out 150ms;
}

.titleText {
    left: auto;
    margin-left: -190px;
}

.titleButtonSet {
    position: relative;
    display: inline-block;
    padding: 8px 12px 9px 12px;
    top: 8px;
    text-decoration: none !important;
    color: #fff;
    transition: all ease-in-out 150ms;
    border-right: #FFF 1px solid;
}

.titleButton:hover, .titleButtonSelected, .titleButtonSet:hover {
    background: #FFF;
    color: #333 !important;
    cursor: pointer !important;
}

@media (max-width: 1350px) {
    #menuWrapper {
        width: 23%;
    }

    #resultsWrapper, #profileWrapper {
        width: 77%;
    }
}

@media (max-width: 1150px) {
    #menuWrapper {
        width: 28%;
    }

    #resultsWrapper, #profileWrapper {
        width: 72%;
    }
}


.float-left {
    float: left !important;
}

/*  Permissions  */
.limited, .medium, .high, .admin {
    visibility: hidden;
}

.godmode {
    opacity: 0.7;
}


#confirmOverlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: url('../images/confirm/ie.png');
    background: -moz-linear-gradient(rgba(11, 11, 11, 0.1), rgba(11, 11, 11, 0.6)) repeat-x rgba(11, 11, 11, 0.2);
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(11, 11, 11, 0.1)), to(rgba(11, 11, 11, 0.6))) repeat-x rgba(11, 11, 11, 0.2);
    z-index: 100000;
}

#confirmBox {
    background: url('../images/confirm/body_bg.jpg') repeat-x left bottom #e5e5e5;
    width: 460px;
    position: fixed;
    left: 50%;
    top: 50%;
    margin: -190px 0 0 -230px;
    border: 1px solid rgba(33, 33, 33, 0.6);

    -moz-box-shadow: 0 0 2px rgba(255, 255, 255, 0.6) inset;
    -webkit-box-shadow: 0 0 2px rgba(255, 255, 255, 0.6) inset;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.6) inset;
}

#confirmBox h1,
#confirmBox p {
    font: 26px/1 'Cuprum', 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
    background: url('../images/confirm/header_bg.jpg') repeat-x left bottom #f5f5f5;
    padding: 18px 25px;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.6);
    color: #666;
}

#confirmBox h1 {
    letter-spacing: 0.3px;
    color: #888;
}

#confirmBox p {
    background: none;
    font-size: 16px;
    line-height: 1.4;
    padding-top: 35px;
}

#confirmButtons {
    padding: 15px 0 25px;
    text-align: center;
}

#confirmBox .conbutton {
    display: inline-block;
    background: url('../images/confirm/buttons.png') no-repeat;
    color: white;
    position: relative;
    height: 33px;

    font: 17px/33px 'Cuprum', 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;

    margin-right: 15px;
    padding: 0 35px 0 40px;
    text-decoration: none;
    border: none;
}

#confirmBox .conbutton:last-child {
    margin-right: 0;
}

#confirmBox .conbutton span {
    position: absolute;
    top: 0;
    right: -5px;
    background: url('../images/confirm/buttons.png') no-repeat;
    width: 5px;
    height: 33px
}

#confirmBox .blue {
    background-position: left top;
    text-shadow: 1px 1px 0 #5889a2;
}

#confirmBox .blue span {
    background-position: -195px 0;
}

#confirmBox .blue:hover {
    background-position: left bottom;
}

#confirmBox .blue:hover span {
    background-position: -195px bottom;
}

#confirmBox .gray {
    background-position: -200px top;
    text-shadow: 1px 1px 0 #707070;
}

#confirmBox .gray span {
    background-position: -395px 0;
}

#confirmBox .gray:hover {
    background-position: -200px bottom;
}

#confirmBox .gray:hover span {
    background-position: -395px bottom;
}
