﻿bodyConfirmation {
    font-family: Arial;
    font-size: 10pt;
}

.modalBackgroundConfirmation {
    background-color: Black;
    filter: alpha(opacity=40);
    opacity: 0.4;
}

.modalPopupConfirmation {
    background-color: #FFFFFF;
    width: 300px;
    border: 3px solid #0DA9D0;
}

    .modalPopupConfirmation .headerConfirmation {
        background-color: #2FBDF1;
        height: 30px;
        color: White;
        line-height: 30px;
        text-align: center;
        font-weight: bold;
    }

    .modalPopupConfirmation .bodyConfirmation {
        min-height: 50px;
        line-height: 30px;
        text-align: center;
        font-weight: bold;
    }

    .modalPopupConfirmation .footerConfirmation {
        padding: 3px;
    }

    .modalPopupConfirmation .yes, .modalPopupConfirmation .no {
        height: 23px;
        color: White;
        line-height: 23px;
        text-align: center;
        font-weight: bold;
        cursor: pointer;
    }

    .modalPopupConfirmation .yes {
        background-color: #2FBDF1;
        border: 1px solid #0DA9D0;
    }

    .modalPopupConfirmation .no {
        background-color: #9F9F9F;
        border: 1px solid #5C5C5C;
    }
