﻿/*
#hxgLayerPopup
{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    
    
}
*/
.hxgPopupRoot
{
    position: fixed;
    top: 0px;
    left: 0px;
    
    width: 100%;
    height: 100%;
    text-align : center;
    z-index : 6000;
}
.hxgPopupMask
{
    background-color : #000000;
    opacity : 0.5;
    -moz-opacity : 0.5;
    -ms-filter: "alpha(opacity=50)"; /* IE 8 */
    filter : alpha(opacity=50); /* IE < 8 */ 
     position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
  
    
}
.hxgPopup
{
    background-color : #fff;   
    border : solid 1px #222;
    position: absolute;
   
}

.hxgPopupHeader
{
    height : 34px;
    cursor : move;
    background-color : #abc;
}
.hxgPopupCloseBtn
{
    position : absolute;
    right : 0px;
    top : 0px;
    background-image : url("../../serverFiles/img/icon/closePopup.png");
    background-repeat : no-repeat;
    width : 38px;
    height : 38px;
    float : right;
    cursor : default;
}

.hxgPopupTitleIcon
{
    float : left;
    width : 30px;
    height : 30px;
    margin-right : 5px;    
    margin-left: 5px;
}

.hxgPopupINFOImg
{
     background-image : url("../../serverFiles/img/icon/info.png");
     background-position : center center;
     width : 50px;
     height: 50px;
     margin : 0 10px 2px 0;
}

.hxgPopupTitle 
{
    font-size: 15pt;
    font-weight: bold;
    line-height: 30px;
    text-align: left;
    
}

.hxgPopupContent {
    /*background-color: #F0F0F0;
    border: 1px inset;*/
    padding: 20px;
    /*margin-top : 10px;*/
    overflow : auto;
    
   
}

.hxgPopupFooter {
    background-color: #EAEAEA;
    padding: 5px;
}


.hxgPopupFooter .hxgStopShow
{
    font-size: 7pt;
    text-align: right;
}

.hxgPopupFooter .hxgStopShow input
{
    vertical-align : middle;
    margin: 0 5px;
}