﻿#ProgressIndicator
{
    text-align: center;
    border: Solid 1px Black;
    margin: 5px 5px 5px 5px;
    padding: 5px 5px 5px 5px;
    /*background-image: url(images/ProgressBackground.png);*/
    background-repeat: repeat;
    background-color: Transparent;
    z-index: 1;
}

#SpinnerImage
{
    
    height: 40px;
    width: 45px;
    background-image: url(images/spinner2.gif);
    background-repeat: no-repeat;
    background-color: Transparent;
}


#popupMask {
	position: absolute;
	z-index: 200;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: .5;
	filter: alpha(opacity=50);
	/* this hack is so it works in IE
	 * I find setting the color in the css gives me more flexibility 
	 * than the PNG solution.
	 */
	background-color:transparent !important;
	background-color: #333333;
	/* this hack is for opera support
	 * you can uncomment the background-image if you don't care about opera.
	 * this gives you the flexibility to use any bg color that you want, instead of the png
	 */
	background-image/**/: url("maskBG.png") !important; // For browsers Moz, Opera, etc.
	background-image:none;
	background-repeat: repeat;
	display:none;