#lightbox_overlay {
    /* background-color: #CCCCFF; *//* The color to display*/
    background-color: #444444;

    /* The transparency of the background */
    opacity: .75;
    filter: alpha(opacity=75);

    position: fixed;

    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;

    /* Set the overlay so it appears above the page content */
    z-index: 1000;
}
#lightbox_content {
    border: 1px solid #cccccc;
    position: absolute;

    /* Default positioning, that will be overridden by the javascript */
    left: 0px;
    top: 0px;

    padding: 10px 20px;
    min-width: 200px;
    /*height: 200px;*/
    background-color: #FFFFFF;

    /*Must use a z-index greater than the screen overlay*/
    z-index: 1001;
}
/* CSS only replacement for EBG button images */
/* <a class="faux_button" href="">TEXT</a> */
.faux_button {
    display: block;
    margin: 2px;
    width: 100px;
    height: 17px;
    border: 1px solid #ffffff;
    background-color: #cccccc;
    font-family: Arial, sans-serif;
    font-weight: bolder;
    font-size: 12px;
    line-height: 17px;
    text-align: center;
    vertical-align: middle;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
}
.faux_button:link, .faux_button:hover, .faux_button:active, .faux_button:visited {
    color: #ffffff;
    text-decoration: none;
}
.faux_button:hover {
    background-color: #aaaaaa;
}
