@charset "utf-8";


#ModalArea {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	display: none;
}

#ModalArea #ModalBg {
	width: 100%;
	height: 100%;
	background: #000000;
	filter: alpha(opacity=85);
	background: rgba(0,0,0,0.85);
}

#ModalArea #ModalWindow {
	position: absolute;
	top: 100px;
	left: 100px;
	background-color: #fff;
	padding: 40px;
	width: 600px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
}

#ModalArea #ModalCloseBtn {
	position: absolute;
	bottom: 8px;
	right: 8px;
	cursor: pointer;
}


#ModalArea input.imgbtnOver:hover{
	filter:alpha(opacity=50);
	-moz-opacity: 0.5;
	opacity: 0.5;
}
