.modalBackground
{
    background-color: Gray ;
    filter: alpha(opacity=45);
    opacity: 0.8;
}

.modalPopup
{
    background-color: #FFFFFF;
    border-width: 3px;
    border-style: solid;
    border-color: black;
    padding-top: 10px;
    padding-left: 10px;
    width: 75%;
    height: 75%;
}

.modalPopup .header
    {
        background-color: #2FBDF1;
        height: 30px;
        width: 590px;
        color: White;
        line-height: 30px;
        text-align: center;
        font-weight: bold;
    }
.modalPopup .body
    {
        min-height: 50px;
        line-height: 30px;
        text-align: center;
        font-weight: bold;
    }
.modalPopup .footer
    {
        padding: 3px;
    }
.modalPopup .yes, .modalPopup .no
    {
        height: 23px;
        color: White;
        line-height: 23px;
        text-align: center;
        font-weight: bold;
        cursor: pointer;
    }
.modalPopup .yes
    {
        background-color: #2FBDF1;
        border: 1px solid #0DA9D0;
    }
.modalPopup .no
    {
        background-color: #9F9F9F;
        border: 1px solid #5C5C5C;
    }


