﻿
.modal_dialog {
	position: fixed;
	display: none;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(160,160,160);
	background-color: rgba(160,160,160,0.3);
}

.modal_dialog_frame {
	position: fixed;
	left: 100px;
	top: 100px;
	background-color: #fff;
	border: 1px solid #ddd;
	width: auto;
	height: auto;
}

.modal_dialog_title_bar {
	border-bottom: 1px solid #ddd;
	height: 50px;
	cursor: move;
}

.modal_dialog_title_bar span {
	color: #157E8D;
	line-height: 50px;
	font-size: 1.5em;
	margin-left: 20px;
}

.modal_dialog_title_bar button {
	height: 30px;
	width: 30px;
	float: right;
	margin: 10px 10px 0 0;
	border: none;
	background-color: white;
	cursor: pointer;
	font-size: 1.2em;
	color: #444;
}

.modal_dialog_content {
	clear: right;
	overflow-x: auto;
	overflow-y: auto;
	height: calc(100% - 140px);
	padding: 20px 10px 10px;
}

.modal_dialog_button_bar {
	border-top: 1px solid #ddd;
	height: 60px;
}

.modal_dialog_button_bar div {
	line-height: 60px;
}

.modal_dialog_button_bar button {
	float: right;
	margin: 10px 10px 10px 0;
}

.no_body_scroll {
	height: 100%;
	overflow: hidden;
}

