#facebox {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5000000;
    text-align: center;
}

#facebox .popup {
    position: relative;
    border: 3px solid #eeeeee;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.4);
}

#facebox .content {
    text-align: center;
    display: table;
    //height: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    background: #fff;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 20px;
    background: rgb(11, 33, 60); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(11, 33, 60, 0.8) 0%, rgba(11, 13, 17, 1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(11, 33, 60, 1)), color-stop(100%, rgba(11, 13, 17, 1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(11, 33, 60, 0.8) 0%, rgba(11, 13, 17, 1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(11, 33, 60, 0.8) 0%, rgba(11, 13, 17, 1) 100%); /* Opera11.10+ */
    background: -ms-linear-gradient(top, rgba(11, 33, 60, 0.8) 0%, rgba(11, 13, 17, 1) 100%); /* IE10+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#0B213C', endColorstr = '#0B0D11', GradientType = 0); /* IE6-9 */
    background: linear-gradient(top, rgba(11, 33, 60, 0.8) 0%, rgba(11, 13, 17, 1) 100%); /* W3C */
}

#facebox .content > p:first-child {
    margin-top: 0;
}

#facebox .content > p:last-child {
    margin-bottom: 0;
}

#facebox .close {
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 2px;
    background: #fff;
}

#facebox .close img {
    opacity: 0.3;
}

#facebox .close:hover img {
    opacity: 1.0;
}

#facebox .loading {
    text-align: center;
}

#facebox .image {
    text-align: center;
}

#facebox img {
    border: 0;
    margin: 0;
}

#facebox_overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    z-index: 1000000;
}

.facebox_hide {
    z-index: -100;
}

.facebox_overlayBG {
    background-color: #000;
    z-index: 99;
}