/* See ModalDialog.js */

.modalDialogContainer.fullScreen {
    padding: 0px;   /* margin in ModalDialog */
    background-color: white;
    box-sizing: border-box;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    /* zIndex is set in JavaScript */
}

/* NEW 2017/01/27: See ModalDialog.js */
.modalDialogContainer.notFullScreen {
    position: fixed;
    top: 50%;
    left: 50%;
	
    box-sizing: border-box;
    background-color: white;
    border: 5px ridge #b0b0b0;
    padding: 0px;
    min-width: 300px;
}
/*
@media (max-height: 599px) {
    .modalDialogContainer.notFullScreen {
        top: 50%;
    }
}
*/
.modalDialog {
    display: none;
    position: absolute;
    text-align: left;
}
.modalDialogTitle {
    padding-top: 10px;
    padding-bottom: 8px;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 12pt;
    font-weight: bold;
    border-bottom: 1px solid #c0c0c0;
    background-color: #f0f0f0;
}
.modalDialogContent {
    padding: 16px;
    background-color: white;
    text-align: left;
}
.modalDialogButtons {
    box-sizing: border-box;
	width: 100%;
    border-top: 1px solid #c0c0c0;
    background-color: #f0f0f0;
    text-align: center;
    padding-top: 12px;
    padding-bottom: 10px;
    overflow: hidden;
}        
.modalDialogButtons > input[type=button],
.modalDialogButtons > button[type=button] {
    min-width: 5em;
}

.standardModalDialog .modalDialogContent {
    font-size: 11pt;
    line-height: 130%;
}

