.new_popup{
    border-radius:10px;
    display:table;
    position:absolute;
    background-color:white;
    z-index:9999;
    box-shadow:0px 0px 4px gray;
}
.new_popup .popup_cont{
    padding:20px;
}
.popup_close{
    padding:0 8px;
    height:32px;
    line-height:32px;
    font-size:16px;
    color:white;
    background:red;
    border-radius:0 10px 0 0;
    cursor:pointer;
    position:absolute;
    top:2px;
    right:2px;
}
.popup_close:hover{
}
.popup_header{
    min-width:100px;
    height:36px;
    border-bottom:solid 1px rgb(230,230,230);
    padding:0 40px 0 10px;
    line-height:36px;
    font-size:16px;
    color:#006699;
    text-align:left;
    font-weight:bold;
}
.popup_clona{
    position:fixed;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index:999;
    background-color:rgba(0,0,0,0.5);
}
.popup_confirm_table{
    display:table;
    text-align:center;
    height:30px;
    width:100%;
    border-top:solid 1px rgb(230,230,230);
}
.popup_confirm_table > div{
    line-height:30px;
    height:30px;
}
.popup_cont{
    text-align:left;
}
.popup_mover{
    position:absolute;
    top:0px;
    right:0px;
    bottom:0px;
    left:0px;
    cursor:move;
}