﻿#form1	{ height:100%}

* html .Progress { /* ie6 hack */
     position: absolute;
     height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
	 background-image: url(../images/ajax/spinner.gif);
	 background-position: center center;
	 background-repeat: no-repeat;
}

.Normal
{
cursor: default;
position: absolute;
z-index: 0;
width: 100%;
height:100%;
top: 0px;
left: 0px;
background-color:transparent;
}

.Progress
{
z-index: 1000;
position: fixed;
top: 0px;
left: 0px;
background-color: #EEEEEE;
background-image: url(../images/ajax/spinner.gif);
background-position: center center;
background-repeat: no-repeat;
cursor: wait;
width: 100%;
height: 100%;
overflow:visible;
/* opacities to browsers */
filter:alpha(opacity=70);
-moz-opacity:.70;
opacity:.70;
}

