﻿.modalBackground {
    position: absolute;
    z-index: 100;
    top: 0px;
    left: 0px;
    background-color: #000;
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}
.modalPopup {
	background-color: White;
	border: Solid 1px black;
	padding: 15px;
	-moz-border-radius: 10px; /* Mozila */
	-webkit-border-radius: 10px; /* WebKit */
	border-radius: 10px; /* W3C */
}
.popupControl {
	/*background-color: #DCDCDC;*/
	background: url(Images/trans25.png);
	border: Solid 1px #919B9C;
	visibility: hidden;
}
/* Styled separately for easy removal */
.popupControl {
	-moz-box-shadow: 3px 3px 4px #000; /* Mozila */
	-webkit-box-shadow: 3px 3px 4px #000; /* WebKit */
	box-shadow: 3px 3px 4px #000; /* W3C */
}

/* Cause image buttons (eg "Edit" and "Delete" used extensively in GridView) to gray out when disabled */
input[type="image"][disabled="disabled"] {
	filter: gray; /* Trident */
	-webkit-filter: grayscale(1); /* WebKit */
}

DIV.ajaxOverlay {
	position: absolute;
	top: 0px; left: 0px;
	width: 100%; height: 100%;
	background-color: #000;
	opacity: 0.2;
	-ms-filter: "alpha(opacity=20)";
	z-index: 100002;
}
DIV.ajaxUnderlay {
	position: absolute;
	top: 0px; left: 0px;
	width: 100%; height: 100%;
	background: url("Images/AjaxLoader.gif") no-repeat center center;
	z-index: 100001;
}