﻿/*
.progressBackgroundFilter {
  position:absolute;
  top:0px; 
  bottom:0px; 
  left:0px;
  right:0px;
  overflow:hidden; 
  padding:0; 
  margin:0; 
  background-color:#000; 
  filter:alpha(opacity=40); 
  opacity:0.4;
  z-index:1000; 
} 

 

.processMessage { 
  position:absolute; 
  top:30%; 
  left:43%;
  padding:10px; 
  width:14%; 
  z-index:1001; 
  background-color:#fff;
  vertical-align:middle;
  border: solid 1px black;
  text-align:center;
  font-family: Arial;
} 

*/

.ajaxOverlay {
    position: fixed;
    z-index: 99;
    top: 0px;
    left: 0px;
    background-color: #FFFFFF;
    width: 100%;
    height: 100%;
    filter: Alpha(Opacity=40);
    opacity: 0.40;
    -moz-opacity: 0.40;
}
* html .ajaxOverlay {
    position: absolute;
    height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
    width: expression(document.body.scrollWidth > document.body.offsetWidth ? document.body.scrollWidth : document.body.offsetWidth + 'px');
}
.ajaxLoader {
    z-index: 1000;
    position: fixed;
    width: 220px;
    margin-left: -60px;
    top: 50%;
    left: 50%;
    background-color:#fff;
    vertical-align:middle;
    border: solid 1px black;    
	text-align:center;
    font-family : Arial;
    font-weight:bold;
    
}
* html .ajaxLoader {
    position: absolute;
    margin-top: expression((document.body.scrollHeight / 4) + (0 - parseInt(this.offsetParent.clientHeight / 2) + (document.documentElement && document.documentElement.scrollTop || document.body.scrollTop)) + 'px');
}
