.J_Y_Dialog_popup_center {
    width: 100%;
    height: 100%;
    position: fixed;
    _position: absolute;
    z-index: 99999999991001;
    top: 0;
    left: 0;
}

.J_Y_Dialog_popup_overlay {
    background-color: #000 !important;
    position: fixed;
    _position: absolute;
    text-align: center;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999999600;
    filter: alpha(opacity=30);
    opacity: 0.3 !important;
    moz-opacity: 0.30;
    opacity: 0.30;
}

.J_Y_Dialog_content {
    position: fixed;
    _position: absolute;
    text-align: center;
    left: 0;
    top: 0;
    z-index: 99999999991002;
    border:1px solid #888888;
    background-color:#f7f5f5;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.J_Y_Dialog_title {
    background-color: #007dc3;
    height: 42px;
    line-height: 42px;
    color:white;
    font-size: 16px;
    display: flex;
    flex-direction: row;
}
.J_Y_Dialog_title_left{
    flex:1;
    padding-left: 15px;
    text-align: left;
}
#J_Y_Dialog_title_Close{
    color: white;
    cursor:pointer;
    font-size: 28px;
    height: 40px;
    line-height: 40px;
    width: 40px;
    display: inline-block;
    margin-top: 1px;
}
#J_Y_Dialog_title_Close:hover{
    background-color: red;
}
.J_Y_Dialog_title_right{
    width: 40px;
    padding-right: 5px;
}
.J_Y_Dialog_body{
    flex: 1;
    box-sizing: border-box;
}
.J_Y_Dialog_SearchPanel{
    border-bottom: 1px solid #ccc;
    width: 98%;
    margin:5px auto;
    display:flex;
    flex-direction:column;
}
.J_Y_Dialog_bottom {
    background-color: #007dc3;
    height: 42px;
    line-height: 42px;
}
.J_Y_Dialog_Selector_button{
    background-color:#bcd;
    color:darkgreen;
    border-color:#bcd;
    -moz-border-radius: 5px / 5px;
    -webkit-border-radius: 5px 5px;
    border-radius: 5px / 5px;
    min-width:80px;
    height:28px;
    padding: 0px;
    line-height: 28px;
    margin: 0px;
    display: inline-block;
    cursor: pointer;
}
.J_Y_Dialog_Selector_button:hover{
    background: #ddd;
    color:black;
    border-color:#ddd;
}

.J_Y_Dialog_Mover_button{
    background-color:#bcd;
    color:darkgreen;
    border-color:#bcd;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    width:40px;
    height:40px;
    padding: 0px;
    line-height: 40px;
    margin: 0px;
    display: inline-block;
    cursor: pointer;
}
.J_Y_Dialog_Mover_button:hover{
    background: #ddd;
    color:black;
    border-color:#ddd;
}

.J_Y_Dialog_ListPanel{
    overflow-y: auto;
    width: 98%;
    margin:3px auto;
    flex: 1;
    box-sizing: border-box;
}

.J_Y_Dialog_PagePanel{
    height: 32px;
    line-height: 32px;
    margin: 5px auto;
    border-top: 1px solid #ccc;
    width: 98%;
}
.J_Y_Dialog_body_tb{
    width: 95%;
    margin: 5px auto;
    border: solid 1px #bbbbbb;
    border-collapse: collapse;
}
.J_Y_Dialog_body_tb td
{
    padding: 3px;
    border: solid 1px #bbbbbb;
}

.J_Y_Dialog_body_tb th
{
    padding: 3px;
    text-align: center;
    background-color: #e8eef4;
    border: solid 1px #bbbbbb;
}
.J_Y_Dialog_body_tb tbody tr:nth-child(even) td,

.J_Y_Dialog_body_tb tbody tr:nth-child(even) th {background-color: #efefef;}

.J_Y_Dialog_body_tb tbody tr:nth-child(odd) td,

.J_Y_Dialog_body_tb tbody tr:nth-child(odd) th {background-color:#F7F7F7;}

.J_Y_Dialog_TextBox{
    height:28px;
    line-height:28px;
    padding-left: 5px;
    padding-right: 5px;
}