/* Ventana que bloquea la pantalla */
/************************************/

.FullWindowInActive
{
  position: absolute;      
  width: 100%;
  /*height: 100%;*/
  left: 0px;
  top: 0px;
  background: silver ;  
  filter: alpha(opacity=30); 
  opacity: .3 ;
}

/* Caja para el mensaje de espera */
/************************************/


.WaitBox
{ 
    background: white;
    border: 1px solid DarkGray;
    width: 300px;
    padding: 15px;
    text-align: center;
    color: DarkOrange;
    font-weight: bold;
    
    position: absolute;
    left: 50%;
    top: 45%;
    /*margin-top: -30px;  */
    margin-left: -150px;     
}
.WaitBox div { margin-top: 8px; width: 99%;}



/* Estilo de la barra de progreso   */
/************************************/
.xpbar
{
    visibility:visible;
    position:relative;
    overflow:hidden;
    width: 180px;
    height:20px;
    background-color: white;
    border: 1px solid Orange;
    font-size:1px;        
}

span.xpbar_blocks
{
    position:absolute;
    left: -41px;
    padding: 1px;
}
span.xpbar_blocks span
{
    background-color: orange;
    border: 1px solid chocolate;
    position:absolute;
    width: 18px;
    height: 16px;    
    
}



