﻿ .modalBackground
    {
        background-color: Black;
        filter: alpha(opacity=60);
        opacity: 0.6;
    }
    .modalPopup
    {
        background-color: #FFFFFF;
        width: 500px;
        border: 10px solid #444;
        border-radius: 12px;
        padding:0
      
    }
    .modalPopup .header
    {
        background-color: #66BC53;
        color: White;
        text-align: left;
        font-weight: bold;
        font-size:24px;
        padding:15px;
        
    }
    .modalPopup .body
    {
        min-height: 50px;
        line-height: 30px;
        text-align: left;
        color:#034487;
        font-weight: bold;
        font-size:14px;
        padding:15px;
    }
    .modalPopup .footer
    {
       background:none; 
        padding: 10px;
    }
    .modalPopup .yes, .modalPopup .no
    {
        height: 40px;
        color: White;
        text-align: center;
        font-weight: bold;
        cursor: pointer;
        border-radius: 4px;
    }
    .modalPopup .yes
    {
        background-color: #034487;
        border: 1px solid #666;
        padding:10px;
    }
    .modalPopup .no
    {
        background-color: #9F9F9F;
        border: 1px solid #5C5C5C;
    }
    