#msgbox { z-index: 2000; }
#msgbox .exit {
    background: url(/img/btn-tb-close.png);
    background-size: cover;
    display: block;
    width: 20px;
    height: 20px;
    left: 16px;
    position: relative;
    top: -16px;
    float: right;
    cursor: pointer;
}
#msgbox .message, #msgbox .notice, #msgbox .error {
    width: 260px;
    padding: 10px;
    margin: 10px;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 5px;
    font-size: 12px;
    box-shadow: 0 0 7px rgba(0, 0, 0, .3);
    text-shadow: 1px 1px 1px white;
    color: #333;
}
#msgbox a { cursor: pointer; text-decoration: underline; }
#msgbox a:hover { color: #00aff0; }
#msgbox .message { background: #f0f0f0; }
#msgbox .notice { background: #ecf7d2; }
#msgbox .error { background: #ffcea1; }

#msgbox.popup-overlay .message,
#msgbox.popup-overlay-noclosable .message,
#msgbox.popup-overlay .notice,
#msgbox.popup-overlay-noclosable .notice,
#msgbox.popup-overlay .error,
#msgbox.popup-overlay-noclosable .error { 
    display: inline-block;
    position: relative;
    max-width: 50%;
    max-height: 90%;
    vertical-align: middle;
    text-align: left;
    box-shadow: 0 0 20px #666;
}
