#lightbox {
    position: fixed; /* keeps the lightbox window in the current viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(overlay.png) repeat;
    background: rgba(0, 0, 0, .7);
    text-align: center;
    z-index: 999;
    display: none;
}

#lightbox_content {
    position: relative;
    display: inline-block;
    text-align: left;
    color: #000000;
    margin: 150px auto 0 auto;
    padding: 5px;
    font-size: 12px;
    border: 2px solid #bbbbbb;
    background: #9999cc;
    box-shadow: 0 0 25px #111;
    -webkit-box-shadow: 0 0 25px #111;
    -moz-box-shadow: 0 0 25px #111;
}

#lightbox_header, #lightbox_footer {
    position: absolute;
    margin: -20px;
    text-align: right;
    background: #888888;
    width: 100%;
}

button {
    font-weight: bold;
    cursor: pointer;
    color: #000000;
    padding: 2px 6px;
}

#lightbox_close {
    position: absolute;
    top: 0px;
    right: 0px;
    color: #ffffff;
    font-weight: bold;
    cursor: pointer;
}

#lightbox_footer {
    text-align: center;
    bottom: 0;
    margin-bottom: 0px;
}

#lightbox_html {
}