.customAlertModalFrame {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000000;
	display: none;
}
.customAlert {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000000;
	background-color: #ffffff;
	border: solid 1px #000000;
	font-family: Arial;
	display: none;
}
.customAlert .customAlertLoading {
	background-color: rgba(255,255,255,0.3);
	position: absolute;
	z-index: 1100000;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	text-align: center;
	vertical-align: middle;
	display: none;
}
.customAlert .customAlertLoading .outer {
	display: table;
	width: 100%;
	height: 100%;
}
.customAlert .customAlertLoading .outer .inner {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}
.customAlert .customAlertLoading img {
	background-color: #fff;
	background-image: url('anim-preloader.gif');
	background-position: center;
	background-repeat: no-repeat;
}

.customAlert .customAlertInner {
	font-family: Arial;
	padding-bottom: 10px;
}
.customAlert .customAlertInner .customAlertTitle {
	font-family: Arial;
	background-color: #d3d3d3;
	padding: 5px 10px;
	padding-right: 25px;
	position: relative;
}
.customAlert .customAlertInner .customAlertTitle a.closeAlert {
	display: block;
	background-color: red;
	color: #ffffff;
	font-weight: bold;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 4px;
	right: 4px;
}
.customAlert .customAlertInner .customAlertMsg {
	font-family: Arial;
	padding: 10px;
}
.customAlert .customAlertInner .customAlertError {
	font-family: Arial;
	padding-bottom: 10px;
	text-align: center;
	color: red;
	display: none;
}
.customAlert .customAlertInner .customAlertButtons.center {
	text-align: center;
}
.customAlert .customAlertInner .customAlertButtons.left {
	text-align: left;
	padding-left: 15px;
}
.customAlert .customAlertInner .customAlertButtons.right {
	text-align: right;
	padding-right: 15px;
}
.customAlert .customAlertInner .customAlertButtons button {
	background-color: gray;
	color: black;
	border: solid 1px black;
	cursor: pointer;
	margin: 0 5px;
}