/* CSS Document */

div.popUpMaskA {
	position: fixed;
	top: 0;
	left: 0;
	padding: 0 auto;
	width: 100%;
	height: 100%;
	background-color: #222222;
	opacity: 0.8;
	z-index: 3000;
	overflow: auto;
	text-align: center;
}

div.popUpDialogA {
	display: inline-block;
	width: 600px;
	height: 60%;
	margin: 10% 0%;
	background-color: #FFF;
	opacity: 1;
	z-index: 4000;
}

div.popUpMaskB {
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #222222;
	opacity: 0.8;
	z-index: 3000;
	overflow: auto;
}

div.popUpDialogB {
	visibility: hidden;
	position: fixed;
	left: 0;
	width: 600px;
	height: 600px;
	margin: 10% 35%;
	background-color: #FFF;
	opacity: 1;
	z-index: 4000;
}

img.dialogSpinner {
	width: 50%;
	margin: auto 25%;
	animation: spin 2s linear infinite;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	} to {
		transform: rotate(360deg);
	}
}

table.popUpBox {
	width: 96%;
	height: 96%;
	margin: 2%;
	padding: 0;
}

tr.popUpHeaader {
	height: 35px;
	text-align: center;
	vertical-align: middle;
}

tr.popUpBody {
	text-align: center;
}

tr.popUpFooter {
	height: 40px;
	vertical-align: middle;
}

td.popUpHeaderE {
	height: 35px;
	width: 10%;
	text-align: center;
}

td.popUpHeaderC {
	height: 35px;
	text-align: center;
}

td.popUpBody {
	vertical-align: top;
	padding: 2%;
	overflow-x: scroll;
}

td.popUpFooter {
	text-align: right;
	align-content: flex-end;
}

button.stdButton {
	border: 0;
	border-radius: 8px;
	height: 100%;
	font-size: 20px;
	margin: 0 0 0 1%;
}

button.xButton {
	background-color: aqua;
	width: 35px;
}

button.cancelButton {
	background-color: aqua;
	width: 25%;
	padding-bottom: 1%;
	padding-top: 1%;
}

button.deleteButton {
	background-color: crimson;
	width: 25%;
	padding-bottom: 1%;
	padding-top: 1%;
}

button.applyButton {
	background-color: aqua;
	width: 25%;
	padding-bottom: 1%;
	padding-top: 1%;
}