﻿.modalBackground {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: #000;
	-ms-filter: "alpha(opacity=50)";
	-moz-opacity: 0.5;
	opacity: 0.5;
	z-index: 1;
}
.modalPopup {
	position: fixed;
	background-color: White;
	border: Solid 1px black;
	padding: 15px;
	border-radius: 5px;
	box-shadow: 0 0 5px #000; /* W3C */
	z-index: 100000;
	max-height: 90%;
	overflow: auto;
}
.popupControl {
	/*background-color: #DCDCDC;*/
	background: url(Images/trans25.png);
	border: Solid 1px #919B9C;
	padding: 15px;
	visibility: hidden;
	box-shadow: 3px 3px 4px #000; /* W3C */
}
.popupControl UL {
	margin: 0px;
	padding-left: 0;
	list-style-type: none;
}
.popupControl UL LI {
	padding: 3px;
}

.textBoxWatermark {color: Gray; font-style: italic;}

/* Cause image buttons (eg "Edit" and "Delete" used extensively in GridView) to gray out when disabled */
input[type="image"][disabled="disabled"] {
	opacity: 0.5; /* useful because IE11 doest make grayscaling easy */
	-ms-filter: gray;
	-moz-filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	filter: grayscale(100%);
}

/* New Windows 8 style ajax loader */
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;
}