﻿.modalBackground1 {
    background-color: Black;
    filter: alpha(opacity=60);
    opacity: 0.6;
}

.modalPopup1 {
    background-color: #ffffff;
    color: aliceblue;
    width: 400px;
    border: 3px solid #0070B8;
    border-radius: 12px;
    padding: 0
}

    .modalPopup1 .header {
        background-color: #CB1D11;
        height: 30px;
        color: White;
        line-height: 30px;
        text-align: center;
        font-weight: bold;
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
    }

    .modalPopup1 .body {
        min-height: 90px;
        line-height: 80px;
        text-align: center;
        font-weight: bold;
    }

    .modalPopup1 .footer {
        padding: 6px;
    }

    .modalPopup1 .yes, .modalPopup1 .no {
        height: 23px;
        color: White;
        line-height: 23px;
        text-align: center;
        font-weight: bold;
        cursor: pointer;
        border-radius: 4px;
    }

    .modalPopup1 .yes {
        background-color: #2FBDF1;
        border: 1px solid #0DA9D0;
    }

    .modalPopup1 .no {
        background-color: #9F9F9F;
        border: 1px solid #5C5C5C;
    }
.btnHide {
    display: block;
    width: 100px;
    height: 30px;
    margin: 0 auto;
    background: #ab4141;
    background: -moz-linear-gradient(top, #CB1D11 0%, #ab4141 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b22a2a), color-stop(100%,#9d0404));
    box-shadow: inset 0px 0px 6px #fff;
    -webkit-box-shadow: inset 0px 0px 6px #CB1D11;
    border: 1px solid #62C2F9;
    border-radius: 10px;
    font: bold 15px Helvetica, Sans-Serif;
    text-align: center;
    text-decoration: none;
    color: #fff;
    text-shadow: 0px 1px 2px #3d0505;
}