#overlay-container {
    display: none;
}
#overlay-container #ajax-loader-big {
    position: absolute;
    top: 0px;
    left: 50%;
    width: 100px;
    height: 100px;
    margin: 0.5em 0 0 -50px;
}
#overlay-container .close-button {
    position: fixed;
    top: 27px;
    left: 50%;
    margin-left: 490px;
    width: 25px;
    height: 25px;
    background-image: url(/img/close.png);
    z-index: 101;
    cursor: pointer;
}
#overlay-container .overlay-background {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 99;
    background-color: #000;
    opacity: 0.8;
    filter: alpha(opacity=80); /* For IE8 and earlier */
}
* html #overlay-container .overlay-background { /* ie6 hack */
    position: absolute;
    height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
}
#overlay-container .overlay-content {
    position: fixed;
    overflow: auto;
    top: 37px;
    left: 50%;
    margin-left: -495px;
    width: 960px;
    height: auto;
    max-height: 90%;
    min-height: 100px;
    padding: 0.5em 10px 0.5em 20px;
    z-index: 100;
    background-color: #fff;
    border-width: 5px;
    border-color: #5d0003;
    border-style: double;
            border-radius: 5px;
       -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
            box-shadow:  0px 0px 32px 1px #fff;
       -moz-box-shadow:  0px 0px 32px 1px #fff;
    -webkit-box-shadow:  0px 0px 32px 1px #fff;
}