.popup_modal
{
    visibility: hidden;
    display: none;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 65534;
}
.popup_table {
    border: 0px none transparent;
    background-color: transparent;
    padding: 0px;
    margin: 0px;
}
.popup_td {
    padding: 0px;
    border-bottom: 0px none transparent;
}
.popup
{
    visibility: hidden;
    display: none;
    background-color: #eeeeee;
    border-radius: 4px;
    z-index: 65535;
    width: 450px;
    margin: auto;
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.2);
}

.popup_title
{
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-top: 1px solid #4FAADA;
    border-right: 1px solid #4FAADA;
    border-left: 1px solid #4FAADA;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #eeeeee;
    background-color: #048AD0;
    padding: 6px 30px 6px 10px;
    border-bottom: 2px solid #1B6E99;
}

.popup_close_button
{
    float: right;
    cursor: pointer;
}

.popup_content
{
    /*width: calc(100% - 60px);
    height: calc(100% - 140px);*/
    vertical-align: middle;
    text-align: center;
    padding: 30px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
/*    border-right: 1px solid #888888;
    border-left: 1px solid #bbbbbb;
    border-bottom: 1px solid #888888;*/
}

.popup_button
{
    float: right;
    border-radius: 6px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #eeeeee;
    background-color: #444444;
    padding: 6px 20px 6px 20px;
    margin: 0px 20px 20px 20px;
    border-bottom: 3px solid #181818;
    cursor: default;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.popup_button:hover
{
    float: right;
    border-radius: 6px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #eeeeee;
    background-color: #666666;
    padding: 6px 20px 6px 20px;
    margin: 0px 20px 20px 20px;
    border-bottom: 3px solid #333333;
    cursor: default;
}

.popup_button:active
{
    float: right;
    border-radius: 6px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #eeeeee;
    background-color: #666666;
    padding: 6px 20px 6px 20px;
    margin: 0px 20px 20px 20px;
    border-top: 3px solid #333333;
    border-bottom: 0px none;
    cursor: default;
}

.popup_button_danger
{
    float: right;
    border-radius: 6px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #eeeeee;
    background-color: #E0512F;
    padding: 6px 20px 6px 20px;
    margin: 0px 20px 20px 20px;
    border-bottom: 3px solid #A80000;
    cursor: default;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.popup_button_danger:hover
{
    float: right;
    border-radius: 6px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #eeeeee;
    background-color: #ee6666;
    padding: 6px 20px 6px 20px;
    margin: 0px 20px 20px 20px;
    border-bottom: 3px solid #993333;
    cursor: default;
}

.popup_button_danger:active
{
    float: right;
    border-radius: 6px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #eeeeee;
    background-color: #aa3300;
    padding: 6px 20px 6px 20px;
    margin: 0px 20px 20px 20px;
    border-top: 3px solid #993333;
    border-bottom: 0px none;
    cursor: default;
}