#modalBacker {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 990;
    background-color: #000000;
    filter: alpha(opacity=30); /* For IE8 and earlier */
    opacity: 0.3;
}

.modalText {
    margin-top: 15px;
    color:#FDDA7C;
    text-transform: uppercase;
}

.modalText.subtext {
    font-size: 20px;
    line-height: 22px;
}

.modalContainer {
    position:absolute;
    background-color: #000000;
    font-family:Arial, Helvetica, sans-serif;
    -webkit-box-shadow: 5px 5px 5px #444444;
    -moz-box-shadow: 5px 5px 5px #444444;
    box-shadow: 5px 5px 5px #444444;
    border: 5px solid #003363;
    font-size:30pt;
    text-align:center;
    line-height:50pt;
    width:500px;
    height:300px;
    z-index: 991;
    color:#fff;
}

.modalContainer button {
    width: 193px;
    height: 78px;
    font-size: 30px;
    border-radius:10px;
    text-align: center;
    padding: 6px;
    background-color: #666666;
    border: 0px;
    outline: none;
    color: #EEE;
    font-family: inherit;
    font-weight: inherit;
    cursor: pointer;
    line-height: normal;
    text-transform: uppercase;
    -webkit-box-shadow: 5px 5px 5px #444444;
    -moz-box-shadow: 5px 5px 5px #444444;
    box-shadow: 5px 5px 5px #444444;
}

.modalContainer button:hover {
    color: #FFF;
}

.modalContainer button.yes {
    background-color: #249a2a;
}

.modalContainer button.no {
    background-color: #9a2428;
}

.modalContainer table {
    position: absolute;
    width: 100%;
    left: 0px;
    bottom: 40px;
}

.modalContainer table td {
    vertical-align:bottom;
}