    .window_body
    {
        position: fixed;
        background: #ebebeb;
        font-family: calibri, sans;
        z-index: 999999;
        box-sizing: border-box;
        padding: 10px;   
        display: table;   
        font-size: 14px; 
        border: #adacac 1px solid;
        box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    }

    .window_body ul, .window_body li
    {
        list-style-type: none;
    }
    
    .window_body .input
    {
        height: 33px;
    }

    .window_row1
    {
        display: table-row;
        height: 20px;     
        position: relative;
    }

    .window_row2
    {
        display: table-row;
    }

    .window_row3
    {
        display: table-row;
        height: 40px;        
    }

    .window_caption
    {
        background: linear-gradient(#e1e1e1, #bababa);
        box-sizing: border-box;
        vertical-align: middle;
        font-family: calibri, sans;
	    font-size: 12px;
        text-transform: uppercase;
        font-weight: normal;
        border: #adacac 1px solid;
        color: #333333;
        letter-spacing: 1px;
        padding: 10px;
        position: relative;
    }

    .window_content
    {
        display: table-cell;
        background: #f3f3f3;
        border-left: #999999 1px solid;
        border-right: #999999 1px solid;
        border-bottom: #999999 1px solid;        
        height: 100%;   
        vertical-align: top;
        box-shadow: 0 0 10px rgba(0,0,0,0.2);
        position: relative;
    }

    .scroll_content
    {
        padding: 10px; 
        left: 0px; 
        top: 0px; 
        width: 100%; 
        height: 100%; 
        overflow: hidden; 
        display: block; 
        position: absolute; 
        overflow-y: auto; 
        box-sizing: border-box;
    }
    
    .noscroll
    {
        overflow-y: hidden;
    }

    .window_footer
    {
        padding-top: 10px;
    }

    .window_button
    {
        font-family: calibri, sans;
        font-size: 14px;
        background: linear-gradient(#fdfdfd, #d4d5da); 
        min-width: 60px !important;
        text-align: center;
        color: #333333;
		height: 33px;
		cursor: pointer;
		line-height: 26px;
        border: #999999 1px solid;
        box-shadow: 0 0 10px rgba(0,0,0,0.2);
		outline: 0;
        vertical-align: middle;
        display: inline-block;
        text-align: center;
        margin-right: 5px;
    }
    
    .window_button img
    {
        vertical-align: middle;
        display: inline-block;
        margin-right: 3px;
    }

    .window_close
    {
        z-index: 999999; 
        cursor: pointer; 
        position: absolute; 
        top: 6px; 
        right: 10px;
    }
    
    .window_button_close
	{
        color: #333333;
        width: 16px !important;
		height: 16px !important;
		padding: 0;
		cursor: pointer;
		border: none;
		outline: 0;
        background: url(/img/system/close.png) top left no-repeat, transparent !important;
	}

    .window_fieldset 
    {
        background: #ececec;
        border: #999999 1px solid;
        margin: 0 0 5px 0;
        padding-bottom: 15px;
        box-sizing: border-box;
        color: #666666;
        display: block;
        width: 100%;
    }
    
    .window_fieldset legend 
    {
        font-family: calibri, sans;
        text-transform: uppercase;
        font-size: 14px;
        color: #333333 !important;
        padding-bottom: 14px;
        letter-spacing: 1px;
        font-style: normal;
    }
    
    span.error
    {
        color: #990000;  
        font-weight: normal;  
    }

    .ok
    {
        color: green;  
        line-height: 18px;  
    }     