@charset "utf-8";
.modal {
	position: fixed;
	display: none;
	z-index: 9999;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba( 0,0,0, 0.75 );
	overflow-y: auto;
}

.modalBack{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.modal .modalDialog,
.modal .modalPageDialog{
	z-index: 11000;
	background: #FFF;
	border-radius: 4px;
	width: 100%;
	max-width: 600px;
	margin: 20px auto;
}

.modal .modalPageDialog{
	width: 90%;
	padding: 20px;
	box-sizing: border-box;
	max-width: 90%;
	margin: 10px auto;
}

.modal .modalHeader .modalCloseBtn {
  float: right;
  margin-right: 15px;
}

.modal .modalDialog .modal-header .title{
	font-weight: bold;
}

.modal table {
	width:100%;
	min-width:inherit;
}