#popup_container {
    min-width: 320px;
    max-width: 480px;
    background-color: white;
    box-shadow: 0 0 10px black;
    font-size: 14px;
}
#popup_title {
    padding: 0 10px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    line-height: 30px;
    background-color: black;
    color: white;
}
#popup_content {
    padding: 10px;
    background: url('images/info.gif');
    background-size: 24px auto;
    background-repeat: no-repeat;
    background-position: 10px 10px;
}
#popup_content.alert {
    background-image: url('images/info.gif');
}
#popup_content.confirm {
    background-image: url('images/important.gif');
}
#popup_content.prompt {
    background-image: url('images/help.gif');
}
#popup_message {
    padding-left: 34px;
}
#popup_panel {
    margin-top: 20px;
    text-align: right;
}
#popup_panel input[type='button'] {
    background-color: black;
    color: white;
    font-size: 14px;
}
#popup_panel input[type='button']:hover {
    background-color: #008800;
}
#popup_panel #popup_cancel:hover {
    background-color: #ff0000!important;
}