﻿/* 窗口容器 */
.xwf_win_divWin {
    position: absolute;
    padding: 5px;
    background-color: #D7E5F2;
    border: solid 1px #484F59;
    border-radius: 4px;
}
.xwf_win_divWinN {
    /* 无边框窗口 */
    position: absolute;
    padding: 0px;
    background-color: #D7E5F2;
}

/* 标题栏 */
.xwf_win_tbWin {
    table-layout: fixed;
    border-collapse: collapse;
    margin-bottom: 2px;
}
.xwf_win_tbWin td {
    height: 20px;
    overflow: hidden;
    white-space: nowrap;
    vertical-align: top;
    background-repeat: no-repeat;
    background-position: center top;
    border: solid 0px green;
}
.xwf_win_tdIcon {
    width: 20px;
}
.xwf_win_tdTitle {
    color: blue;
    cursor: move;
    font-size: 11pt;
    -moz-user-select: none; /*-- -moz-user-select: none; -- firefox: 禁止文字被选中 --*/
}
.xwf_win_tdTitleFlash {
    color: red;
    font-weight: bold;
    text-align: center;
}
.xwf_win_tdClose {
    width: 42px;
}

/* 窗口区 */
.xwf_win_ifrWin {
    border: 0px;
    padding: 5px;
    background-color: White;
}
.xwf_win_ifrWinN {
    border: 0px;
    background-color: White;
}

/** 模态层 **/
.xwf_win_divModal {
    cursor: not-allowed;
    position: absolute;
    background-color: Black;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)"; /*IE8*/
    filter: alpha(opacity=20); /*-- IE5、IE5.5、IE6、IE7 --*/
    opacity: 0.2; /*-- Opera9.0+、Firefox1.5+、Safari、Chrome --*/
}

.xwf_win_divModal_ {
    cursor: not-allowed;
    position: absolute;
    background-color: Black;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)"; /*IE8*/
    filter: alpha(opacity=20); /*-- IE5、IE5.5、IE6、IE7 --*/
    opacity: 0.2; /*-- Opera9.0+、Firefox1.5+、Safari、Chrome --*/

    width: 1200px;
    height: 1300px;
    left: 10px;
    top: 10px;
}