@CHARSET "utf-8";

#overlay {
    position: fixed;
    _position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    display: none;
}
#overlay_background {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    z-index: 10000;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    opacity: 0;
}

#overlay_content {
    display: none;
    z-index: 10001;
    position: absolute;
    background: #fff;
    color: #000;
    width: 400px;
    height: 240px;
}
#overlay_close {
    display: block;
    float: right;
}
