﻿.modalDialog {
    display: none;
    position: absolute;
    margin: 0;
    padding: 0;
    left: 0;
    top: 0;
    z-index: 1100;
    background-color: ButtonFace;
}

.modalDialogFrame {
    position: absolute;
    margin: 0;
    padding: 0px;
    border: 5px solid Gainsboro;
    background-color: ButtonFace;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    -webkit-box-shadow: 0px 0px 21px 0px rgba(50, 50, 50, 0.75);
    -moz-box-shadow: 0px 0px 21px 0px rgba(50, 50, 50, 0.75);
    box-shadow: 0px 0px 21px 0px rgba(50, 50, 50, 0.75);
}

.modalDialogOverlay {
    position: absolute;
    margin: 0;
    padding: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 1000;
    display: none;
}

.overlayDark {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)"; /* IE 8 */
    filter: alpha(opacity=30); /* IE 5-7 */
    opacity: 0.3; /* good browsers */
}

.overlayClear {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; /* IE 8 */
    filter: alpha(opacity=0); /* IE 5-7 */
    opacity: 0; /* good browsers */
}

.modalDialogSpinner {
    display: none;
    z-index: 999;
    position: absolute;
    margin: auto;
    width: 80px;
    height: 80px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}