/* Lightboxes (just hard code all lightboxes and use EB.Ui.lightbox) */

div.eb_lightbox {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 510px;
    padding: 30px 30px 24px 30px;
    z-index: 99;
    background: #fefcfc;
    background: -moz-linear-gradient(top, #fefcfc 0%, #e7e7e7 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fefcfc), color-stop(100%,#e7e7e7));
    background: -webkit-linear-gradient(top, #fefcfc 0%,#e7e7e7 100%);
    background: -o-linear-gradient(top, #fefcfc 0%,#e7e7e7 100%);
    background: -ms-linear-gradient(top, #fefcfc 0%,#e7e7e7 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fefcfc', endColorstr='#e7e7e7',GradientType=0 );
    background: linear-gradient(top, #fefcfc 0%,#e7e7e7 100%);
    -moz-box-shadow: 6px 6px 12px #666;
    -webkit-box-shadow: 6px 6px 12px #666;
    box-shadow: 6px 6px 12px #666;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
}

div.eb_lightbox > div.eb_lightbox_header {
    padding: 0 0 18px 0;
    border-bottom: 1px solid #dedede;
    font-size: 26px;
    position: relative;
    top: 0;
    left: 0;
}

div.eb_lightbox > div.eb_lightbox_header > div.eb_lightbox_close {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 30px;
    height: 30px;
    background: url(../../images/background/lightbox_close.png) no-repeat center center;
    cursor: pointer;
}

div.eb_lightbox > div.eb_lightbox_content {
    padding: 18px 0 0 0;
    border-top: 1px solid #fff;
}

div.eb_lightbox > div.eb_lightbox_footer {
    float: right;
    font-weight: bold;
    cursor: pointer;
}

div.eb_lightbox_background {
    position: fixed;
    z-index: 98;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-color: #000;
    opacity: 0.0;
    filter: alpha(opacity=0);
}
