﻿
.modalBackground
    {
        background-color: Black;
        filter: alpha(opacity=60);
        opacity: 0.6;
    }

.modalPopup
    {
        background-color: #FFFFFF;
        border: 3px solid #0DA9D0;
        border-radius: 12px;
        padding: 0;
        width:80%;
        margin: 0 10%;
    }

.modalPopup .header
    {
        background-color: #2FBDF1;
        height: 25px;
        color: White;
        line-height: 25px;
        text-align: center;
        font-weight: bold;
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
    }

.modalPopup .body
    {
        min-height: 50px;
        line-height: 30px;
        text-align: center;
        font-weight: bold;
    }

.modalPopup .footer
    {
        padding: 20px;
    }

.modalPopup .yes, .modalPopup .no
    {
        height: 23px;
        color: White;
        line-height: 23px;
        text-align: center;
        font-weight: bold;
        cursor: pointer;
        border-radius: 4px;
    }

.modalPopup .yes
    {
        background-color: #2FBDF1;
        border: 1px solid #0DA9D0;
    }

.modalPopup .no
    {
        background-color: #9F9F9F;
        border: 1px solid #5C5C5C;
    }



.blur
{
    width: 100%;
    background-color: black;
    opacity: 0.5;    
    filter: alpha(opacity=1.0);
    height: 100%;
    z-index: 120;
    top:0;
    left:0;
    position:absolute  ;
}
.normal
{
    width: 250px;
    opacity: 1;    
    height: 200px;    
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 120;
}

.VerticalMiddle{
    vertical-align:middle; 
         opacity: 1.0; 
}

.Padding20px{
    padding:20px;
}