﻿#loadingOverLayer {
    background-color: #000;
    height: 100%;
    -ms-opacity: 0.7;
    opacity: 0.7;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000000;
}

    #loadingOverLayer .loading {
        height: 0;
        width: 0;
        position: fixed;
        top: 50%;
        left: 50%;
    }

        #loadingOverLayer .loading img {
            width: 100px;
            height: 100px;
            margin: -50px 0 0 -50px;
            -ms-border-radius: 10px;
            border-radius: 10px;
        }

#popupLayer {
    height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000000;
}

    #popupLayer .background {
        background-color: #000;
        -ms-opacity: 0.7;
        opacity: 0.7;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000001;
        height: 100%;
    }

    #popupLayer .popupContainer {
        position: fixed;
        width: 80%;
        height: 90%;
        top: 20px;
        left: 10%;
        background-color: #fff;
        z-index: 1000002;
        -ms-border-radius: 10px;
        border-radius: 10px;
    }

        #popupLayer .popupContainer .title {
            border-bottom: 1px solid #888;
            font-size: 20px;
            line-height: 25px;
            padding: 10px 20px;
            font-weight: bold;
        }

        #popupLayer .popupContainer .content {
            padding: 65px 20px 20px 20px;
            height: 100%;
            margin-top: -45px;
        }

            #popupLayer .popupContainer .content .contentContainer {
                width: 100%;
                height: 100%;
            }

        #popupLayer .popupContainer .close {
            width: 30px;
            height: 30px;
            display: inline-block;
            cursor: pointer;
            float: right;
            background-image: url("Images/closebox.png");
            margin: -10px -10px 0 0;
            -ms-opacity: 1;
            opacity: 1;
        }

    #popupLayer.contentPopup .popupContainer {
        height: 70%;
        left: 20%;
        top: 15%;
        width: 60%;
    }
