﻿#containerModal
{
    display: none;
    z-index: 9999;
    left: 0px;
    position: absolute;
    top: 0px;
    background-color: #e3dee0;
}
.window
{
    display: none;
    z-index: 9999;
    width: 50px;
    position: absolute;
    height: 40px;
}
#janelaModal
{
    vertical-align: middle;
    text-align: center;
    width: 50px;
    height: 40px;
}
.MsgAguarde
{
    font-size: 10pt;
    color: gray;
    font-family: 'Arial Unicode MS';
}
.EmProcessamento
{
    font-weight: bold;
    font-size: x-small;
    color: black;
    font-family: Arial;
    background-color: Silver;
    position: absolute;
    top: 0px;
    left: 0px;
    border-right: #3F5B7B 2px solid;
    border-top: #3F5B7B 2px solid;
    border-left: #3F5B7B 2px solid;
    border-bottom: #3F5B7B 2px solid;
    width: 99%;
}
.cssAlinhaCentro
{
    width: 375px;
    height: 203px;
    padding: 10px;
    background-color: #ffffff;
}
/* Janela Modal */
#mask{  
    position:absolute; /* important */  
    top:0px; /* start from top */  
    left:0px; /* start from left */  
    height:100%; /* cover the whole page */  
    width:100%;  /* cover the whole page */  
    display:none; /* don't show it '*/  

/* styling bellow */  
    background-color: #000;  
}  

.modal_window{  
    position:fixed; /* important so we can position it on center later */  
    display:none; /* don't show it */  
    z-index:99;  
    /*
	width:600px;
    height:450px;  */
    /* styling bellow */  
    background-color:#fff;  
    top: 50%;
    left: 50%;
}  

/* style a specific modal window  */  
#modal_window{  
    /*color:black;  
    font-family: Tahoma Verdana Arial Sans-Serif;*/
}  
/* posiciona o link para fechar a janela */
.close {
    display:block;
    text-align:right;
    font-size: 12px;
}
    

