.messagebox_overlay {
	background-color: rgba(255, 255, 255, 0.6);
}
.messagebox_overlay *:focus {
	outline: 0px;
}
.messagebox {
	border: 1px solid rgb(200, 200, 200);
	border-image: none;
	text-align: left;
	color: rgb(48, 48, 48);
	font-family: "CI", Meiryo, verdana, arial, helvetica, sans-serif;
	font-size: 10pt;
	font-style: normal;
	font-weight: normal;
	max-height: 90%;
	min-width: 300px;
	max-width: 90%;
	box-shadow: 0px 2px 4px #a0a0a0;
	background-color: rgb(252, 252, 252);
}
.messagebox_content {
	padding: 20px 20px 0px;
}
.messagebox_content::after {
	flex:0 0 auto;
	height: 20px;
	display: block;
	content: "";
}
.messagebox_content_label {
	margin: 10px auto auto;
	width: 100%;
	font-style: italic;
	display: block;
}
.messagebox_content_input {
	margin: 10px auto auto;
	padding: 3px;
	border: 1px solid rgb(144, 144, 144);
	border-image: none;
	width: 100%;
	text-align: left;
	color: rgb(48, 48, 48);
	font-family: inherit;
	font-size: inherit;
	font-style: normal;
	font-weight: inherit;
	display: block;
}
.messagebox_content_input:hover {
	border-color: rgb(112, 112, 112);
}
.messagebox_content_input:focus {
	border-color: rgb(112, 112, 112);
	box-shadow: inset 0px 0px 3px #ffd540;
}
.messagebox_content_label .messagebox_content_input {
	margin-top: 4px;
}
.messagebox_content_input_selectplaceholder {
	color: rgb(144, 144, 144);
}
.messagebox_content_error {
	padding: 4px 6px;
	border-radius: 2px;
	color: rgb(160, 32, 32);
	margin-top: 15px;
	margin-bottom: -10px;
	background-color: rgb(250, 208, 213);
}
.messagebox_buttons {
	padding: 10px 20px 0px;
	text-align: center;
	border-top-color: rgb(200, 200, 200);
	border-top-width: 1px;
	border-top-style: solid;
	background-color: rgb(245, 245, 245);
}
.messagebox_buttons button {
	margin: 0px 4px 10px;
	padding: 5px 10px;
	border-radius: 2px;
	border: 1px solid rgb(192, 192, 192);
	border-image: none;
	text-align: center;
	color: rgb(64, 64, 64);
	font-family: inherit;
	font-size: inherit;
	font-weight: bold;
	cursor: pointer;
	min-width: 75px;
	background-image: linear-gradient(rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.1) 51%, rgba(255, 255, 255, 0) 100%);
	background-color: rgb(233, 233, 233);
}
.messagebox_buttons button:hover {
	color: rgb(32, 32, 32);
	background-color: rgb(240, 240, 240);
}
.messagebox_buttons button:active {
	border: 1px solid rgb(160, 160, 160);
	border-image: none;
	box-shadow: inset 0px 0px 6px #d0d0d0;
	background-color: rgb(230, 230, 230);
}
