.modal_box {
//	width: 40%;
//	margin-top: 5px;
	background: rgba(255,255,255,0.2);
//	padding: 35px;
	border: 1px solid #fff;
	border-radius: 4px;
	background-clip: padding-box;
	text-align: center;
}

.modal_button {
	font-size: 11px;
	padding: 1px 5px 1px 5px;
	color: RED;
	border: 1px solid #008080;
	border-radius: 4px;
	text-decoration: none;
	cursor: pointer;
	font-weight: bold;
	transition: all 0.1s ease-out;
}
.modal_button:hover {
	  background: #008080;
	  border: 1px solid red;
	  color: #fff;
}
.modal_overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 128, 128, 0.9);
	transition: opacity 500ms;
	visibility: hidden;
	opacity: 0;
	z-index: 10;
}
.modal_overlay:target {
	visibility: visible;
	opacity: 1;
}

.modal_popup {
	margin: 20px auto;
	padding: 20px;
	background-color: #fff;
	border-radius: 5px;
	width: 90%;
	height: 80%;
	position: relative;
	transition: all 1s ease-in-out;
}

#modal_tit {
	position: fixed;
	text-align: center;
	font-size: 14px;
	font-weight: bold;
	padding: 10px 0 10px 0;
	color: #920000;
	background-color: #fff;
	width: 86%;
	z-index: 20;
//	font-family: Tahoma, Arial, sans-serif;
}
.modal_popup .close {
	position: absolute;
	top: 5px;
	right: 5px;
	transition: all 200ms;
	font-size: 30px;
	font-weight: bold;
	text-decoration: none;
	color: red;
}
.modal_popup .close:hover {
//	color: #008080;
}
.modal_popup .content {
//	max-height: 30%;
	height: 100%;
	overflow: auto;
}

.modal_popup div::-webkit-scrollbar {
	width: 10px;
}
.modal_popup div::-webkit-scrollbar-track {
	background: #D2F8F8;
	border-radius: 0;
}
.modal_popup div::-webkit-scrollbar-thumb {
	background: #008080;
	border-radius: 4px;
}
.modal_popup div::-webkit-scrollbar-thumb:hover {
	background: #920000;
}

@media screen and (max-width: 700px){
	.modal_button {
		font-size: 10.5px;
	}

	.modal_box{
//		width: 70%;
	}
	.modal_popup{
//		width: 70%;
	}
}

@media screen and (max-width: 640px){
	.modal_button {
		font-size: 10.5px;
		padding: 0 4px 0 4px;
	}
}

