@charset "utf-8";

.overlay {
	background-color: #000;
	opacity: 0.5;
	filter: alpha(opacity=50);
}
.modal_window {
	background-color: #fff;
	box-shadow: 6px 6px 10px 2px rgba(0,0,0,0.4);
	box-shadow: 0px 0px 24px 10px rgba(0,0,0,0.5);
}
.modal_window .container {
	background-color: #fff;
	padding: 0;
}

.modal_window .title_bar {
	height: 20px;
	font-size: 14px;
	background-color: transparent;
}
.modal_window .title_bar .title {
	display: none;
}
.modal_window .close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 28px;
	height: 28px;
	background: url(../images/common/modal_controls.png) no-repeat;
	text-indent: -9999px;
	cursor: pointer;
}
.modal_window .sp-close {
	display: none;
}
.modal_window .close:hover {
	background-position: 0 -28px;
}
.modal_window .containerHeader {
	position: absolute;
	top: 0;
	left: 0;
	height: 60px;
	width: 660px;
	margin: 0 30px 0 0;
	cursor: move;
}
.drag_overlay {
	cursor: move;
}
.modal_window .containerBody {
	padding: 0;
}

/* fade in */
.modal_window.fadein {
	opacity: 0;
	animation-name: fadein;
	animation-duration: 0.3s;
	animation-delay: 0.2s;
	animation-fill-mode: forwards;
}
@keyframes fadein {
	from	{opacity: 0}
	to		{opacity: 1}
}
