/*!
 * Bootstrap Modal
 *
 * Copyright Jordan Schroter
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 */

.modal-open {
	overflow: hidden;
}
.modal .loading-mask {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #e8e6df;
	border-radius: 6px;
}

.modal-backdrop.modal-absolute{
	position: absolute;
	z-index: 940;
}

.modal-backdrop,
.modal-backdrop.fade.in{
	opacity: 0.85;
	filter: alpha(opacity=85);
	background: #e8e6df;
}
.modal-dialog {
	margin: 0;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	text-align: center;
}
.modal-header {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 9999;
	padding: 0;
}
.modal-footer {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 9999;
	height: 50px;
	width: 100%;
	border-top: none;
}
.modal-header .close {
	width: 50px;
	height: 50px;
	background-color: #ffffff;
	opacity: 0.7;
	filter: alpha(opacity=70);
	color: #1c1c1c;
	position: relative;
	top: 2px;

}
.modal-header .close:hover {
	opacity: 1;
	filter: alpha(opacity=100);

}
