﻿        .modalBackground
        {
            background-color: Black;
            filter: alpha(opacity=60);
            opacity: 0.6;
        }
        .modalPopup
        {
            background-color: #FFFFFF;
            border: 3px solid  #00b362;
            border-radius: 12px;
            padding: 0;
        }
        .modalPopup .header
        {
            background-color:  #00b362;
            height: 30px;
            color: White;
            line-height: 30px;
            text-align: center;
            font-weight: bold;
            border-top-left-radius: 6px;
            border-top-right-radius: 6px;
        }
        .modalPopup .body
        {
           
            width: 721px;
            height: 196px;
            text-align: center;
            font-family: Verdana;
            font-size: small;
        }
        .modalPopup .footer
        {
            padding: 6px;
        }
        .modalPopup .yes, .modalPopup .no
        {
            height: 23px;
            color: White;
            line-height: 23px;
            text-align: center;
            font-family: Verdana;
            font-size: small;
            cursor: pointer;
            border-radius: 4px;
        }
        .modalPopup .yes
        {
            background-color:  #00b362;
            border: 1px solid #0DA9D0;
        }
        .modalPopup .no
        {
            background-color: #9F9F9F;
            border: 1px solid #5C5C5C;
        }