﻿.pPopupContainer {
    background: #fff;
    width: 1100px;
    text-align: center;
    display: block;
    visibility: visible;
    position: fixed;
    z-index: 10000;
    margin-left: -550px;
    left: 50%;
    top: 10px;
    padding: 30px 0 10px 30px;
    -moz-box-shadow: 0 0 200px #000;
    -webkit-box-shadow: 0 0 200px #000;
    box-shadow: 0 0 200px #000;
    /*, inset 0 0 50px rgba(0,0,0,0.3);*/
    border: 1px solid #f4f4f4;
    border-top: 5px solid #54c8e1;
}

.pPopupContent {
    max-height: 640px;
    overflow-y: auto;
    overflow-x: hidden;
    text-align: left;
}

.pPopup_close {
    position: absolute;
    right: 5px;
    top: -3px;
    padding: 0;
    margin-top: -2px;
}

    .pPopup_close input[type="button"] {
        margin: 0;
        margin-top: 5px;
        height: 20px;
        width: 40px;
        padding: 0;
        color: #ff4f74;
        border-radius: 0;
        font-size: small;
        box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.51);
    }

        .pPopup_close input[type="button"]:hover {
            /*background-color: rgba(255, 79, 116, 0.20);*/
            box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.51), 0px 0px 30px rgba(0, 0, 0, 0.1) inset;
        }

        .pPopup_close input[type="button"]:active {
            background-color: rgba(255, 79, 116, 0.40);
        }

.pPopupBackgroundFilter {
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    overflow: hidden;
    padding: 0;
    margin: 0;
    background-color: #000;
    filter: alpha(opacity=50);
    opacity: 0.5;
    z-index: 9999;
}