body.modalOpen {
    overflow: hidden;
}

.fullScreenModalOverlay.modal_overlay {
    position: fixed;
    z-index: 100001;
    width: 100%;
    height: 100%;
    background: black;
    opacity: .9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=75);
}

#fullScreenModal {
    position: fixed;
    overflow: hidden;
    z-index: 100002;
    left: 40px;
    top: 20px;
    min-height: 500px;
    width: auto;
    background: white;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

#fullScreenModal.absolute {
    position: absolute;
}

#fullScreenModal #header {
    width: 100%;
    height: 50px;
    margin-left: 0;
    border-bottom: 1px solid #bcbcbc;
    background: #ececec url(/images/admin/modal_hdr_bg.png) repeat-x;
    border-top-left-radius: 8px;
    -moz-border-radius-topleft: 8px;
    -webkit-border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    -moz-border-radius-topright: 8px;
    -webkit-border-top-right-radius: 8px;
    positon: relative;
}

#fullScreenModal #header.white {
    background: white;
    border-bottom: none;
}

#fullScreenModal #header .title {
    font: 23px ProximaNovaBold;
    color: #898989;
    float: left;
    margin: 12px 0 0 15px;
    text-shadow: 0px 1px 1px #fff;
    positon: relative;
}

#fullScreenModal #header .rightSide {
    float: right;
}

#fullScreenModal #header .rightSide .cta {
    color: #333;
    cursor: pointer;
    display: inline-block;
    border: 1px solid #d0d0d0;
    height: 24px;
    margin: 9px 10px 0;
    padding: 2px 15px 5px 15px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    positon: relative;
}

#fullScreenModal #header .rightSide .cta:hover {
    background: #fff;
}

#fullScreenModal #header .rightSide .cta .icon {
    font: 14px Pictos;
    margin: 0 5px 0 0;
}

#fullScreenModal #header .rightSide .close.cta {
    line-height: 28px;
}

#fullScreenModal #header .rightSide .close.cta .icon {
    font: 14px Pictos;
    margin: 0 0 0 5px;
    color: #333;
}

#fullScreenModal #header .rightSide .close.cta .text {
    font: 13px ProximaNovaRegular;
}

#fullScreenModal #modalBody {
    padding: 15px 15px 0 15px;
    width: auto !important;
    overflow-y: scroll;
    overflow-x: hidden;
    position: relative;
}

#fullScreenModal #modalBody.noScroll, #fullScreenModal {
    overflow: auto;
}

#fullScreenModal #footer {
    border-top: 1px solid #bcbcbc;
    background: #ececec url(/images/admin/modal_hdr_bg.png) repeat-x;
    position: fixed;
    bottom: 20px;
    height: 20px;
    width: inherit;
    background: #ececec;
    border-bottom-left-radius: 8px;
    -moz-border-radius-bottomleft: 8px;
    -webkit-border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    -moz-border-radius-bottomright: 8px;
    -webkit-border-bottom-right-radius: 8px;
    positon: relative;
}

/* Temporary Modal Input Style */
#fullScreenModal label {
    display: inline-block;
    color: #666;
    padding: 0 0 10px 0;
    font-size: 15px;
    font-family: ProximaNovaBold;
}

#fullScreenModal .modal-input {
    margin: 0 5px 0 0;
    width: 94%;
    height: 20px;
    padding: 7px 9px;
    font-family: ProximaNovaRegular;
    font-size: 13px;
    color: #666;
    background: #fafafa;
    border: 1px solid #ccc;
    -moz-border-radius: 4px 4px 4px 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    position: relative;
}