#popup_overlay {
    background-color: #000000;
    left: 0;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";/* IE8 */
    filter:progid:DXImageTransform.Microsoft.Alpha(opacity = 70); /* IE5+ */
    filter: alpha(opacity=70);/* IE4- */
    moz-opacity: 0; /* Mozilla */
    -khtml-opacity: 0; /* Safari */
    opacity: 0;  /* general CSS3 */
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1001;
}

#popup {
    background-color: #FFFFFF;
    position: absolute;
    left:0;
    top:0;
    /*width:300px;*/
    min-width: 300px;
    z-index: 1002;
    -moz-border-radius-topleft: 5px; -webkit-border-top-left-radius: 5px; -khtml-border-top-left-radius: 5px; border-top-left-radius: 5px;
    -moz-border-radius-topright: 5px; -webkit-border-top-right-radius: 5px; -khtml-border-top-right-radius: 5px; border-top-right-radius: 5px;
    -moz-border-radius-bottomleft: 5px; -webkit-border-bottom-left-radius: 5px; -khtml-border-bottom-left-radius: 5px; border-bottom-left-radius: 5px;
    -moz-border-radius-bottomright: 5px; -webkit-border-bottom-right-radius: 5px; -khtml-border-bottom-right-radius: 5px; border-bottom-right-radius: 5px;
    border: 2px solid #262926;
}

#popup .header {
    position: relative; width: 100%; height:auto;
}

#popup .header .close-btn {
    position: absolute; right: 0; top: 0;
    width: 32px; height: 32px;
    background: transparent url("../images/popup_close_button.png") no-repeat;
    cursor: pointer;
}

#popup .header .close-btn:hover {
    background-position: 0 -32px
}


#popup textarea {
    display: block;
    width: auto;
    margin-bottom: 10px;
}

#popup div.content {
    padding: 10px 10px 0 10px;
}

#popup div.content h3 {
    margin-bottom: 10px;
    font-size: 110%; font-weight: bold;
}

#popup div.content p {
    margin: 10px;
    line-height: 1.3em;
    color: #444444;
}

#popup .footer { text-align: center; margin-bottom: 10px; margin-top: 10px; }
/*#popup .footer * { text-align: center; }*/

.popup_hidden {
    display: none;
}

