﻿

/* 於顯示「強制回應彈出式方塊」時，背景項目所用的樣式 */
.modalBackground {
    --background-color: #777;
    filter: alpha(opacity=75);
    opacity: 0.75;
}

/* 強制回應彈出式對話方塊所用的樣式 */
.cssModalPopup {
    font-family: 微軟正黑體;
    background-color: #FFFFFF;
    width: 70%;
    height:600px;
    border: 3px solid #999999;
    padding: 5px;
    overflow-y: auto;
}

/* 強制回應彈出式方塊的可拖曳處 */
.cssDragHandler {
}

.cssModalPopup .top_title {
    float: left;
    width: 100%;
    background-color: #809EC0;
    color: #FFFFFF;
    font-size: 1em;
    --padding: 5px;
    text-align: center;
    line-height: 30px;
    letter-spacing: 2px;
    --padding-right: 2px;
}

.PopupContent {
    float: left;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    border: 0px solid #999999;
    
}

    .PopupContent .inner {
        height: 80%;
    }


    .PopupContent .BottomTableArea {
        border: 0px solid #000000;
        margin-top: 0px;
        height: 80%;
    }

    .PopupContent .datapager {
        margin: auto;
        margin-top: 20px;
        text-align: center;
    }

    .PopupContent .BtnArea {
        clear: right;
        float: right;
        margin-right: 30px;
        margin-top: -23px;
    }


table.ModalPopup_Table {
    clear: both;
    float: left;
    width: 100%;
    border-collapse: separate;
    border-spacing: 1px;
}

    table.ModalPopup_Table .Divider {
        float: left;
        width: 100%;
        height: 1px;
        background-color: #CCCCCC;
        margin-bottom: 5px;
        margin-top: 5px;
    }


/* 「關閉」按鈕 */
.ModalPopup_close {
    top: 7px;
    right: 8px;
    position: absolute;
    /* still bad on picking color */
    background: #CCCCCC;
    /* make a round button */
    /* center text */
    line-height: 20px;
    text-align: center;
    height: 25px;
    width: 25px;
    font-size: 18px;
    padding: 1px;
    color: #ffffff;
}
