.dialog_background { width:100%; height:100%; top:0; left:0; position:fixed; background:black; opacity:0.5; display:none; }
.dialog_window { width:400px; height:400px; position:fixed; top:20%; background:white; border:1px solid gray; box-shadow:1px 1px 4px -2px black; display:none; overflow:hidden; }

.searchBox {
	padding:5px 0;
	border-bottom:1px solid gray;
}

.searchBox input {
	width:150px;
	height:20px;
	margin:0 10px;
	border:1px solid gray;
	font-size:13px;
	text-align:center;
}

.dialog_area {
	margin:0 auto;
}

.dialog_head {
	width:98%;
	padding:15px 1%;
	color:white;
	background:#7e7f81;
	font-size:14px;
}

.dialog_window .dialog_message { width:100%; height:355px; position:absolute; font-size:13px; overflow:auto; }

.dialog_window .dialog_message p {
	margin:5px 15px;
}

.dialog_window .dialog_icon {
	display:inline-block;
	vertical-align:middle;
	margin:0 5px 0 0;
}

.dialog_window .dialog_icon img {
	height:30px;
}

.dialog_window .dialog_title {
	display:inline-block;
	vertical-align:middle;
}

.dialog_window .head_icons {
	width:auto;
	position:absolute;
	top:15px;
	right:15px;
	cursor:pointer;
}

.dialog_window .dialog_loader {
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	background:url('/interface/loader.gif');
	background-size:10%;
	background-position:center;
	background-repeat:no-repeat;
}

.dialog_window .head_icons img {
	width:15px;
	height:15px;
}

.dialog_window .buttons { height:20px; padding:10px 0; }
.dialog_window .buttons a.large_button { width:100px; margin:0 3px; padding:5px; display:block; text-align:center; font-weight:bold; color:white; background:linear-gradient(to bottom, red 0%, #a90707 100%); border-radius:3px; cursor:pointer; float:right; }
.dialog_window .buttons a.large_button:hover { background:linear-gradient(to bottom, red 0%, #760000 100%); text-decoration:none; }

.dialog_window .dialog_data { width:90%; padding:5%; }
.dialog_window .dialog_data label { width:40%; display:inline-block; }
.dialog_window .dialog_data select { width:41%; height:36px; margin:4px 0; vertical-align:baseline; font-size:0.9em; font-weight:bold; border:1px solid silver; border-radius:5px; }
.dialog_window .dialog_data input { width:46%; height:22px; padding:5px; margin:4px 0; vertical-align:baseline; font-size:13px; font-weight:bold; border:1px solid silver; border-radius:4px; }

.popup {
	width:40%;
	padding:20px 10px;	
	top:45%;
	left:30%;
	position:fixed;
	border:2px solid #ff8a00;
	color:black;
	background:#fff;
	font-size:14px;
	border-radius:4px;
	text-align:center;
	box-shadow:1px 1px 10px 0 black;
	display:none;
	opacity:0;
	cursor:pointer;
}