@charset "utf-8";


/* style
------------------------*/
#modal_overlay{
	width:100%;
	height:120%;
	display:none;
	background-color:rgba( 0,0,0, 0.75 );
	position:fixed;
	top:0;
	left:0;
	z-index:1000;
}

.modal_content{
	display:none;
	padding:10px;
	margin:30px 20px 0 5px;
	background:#fff;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	border-radius:4px;
	-webkit-box-shadow:0 0 10px #000;
	-moz-box-shadow:0 0 10px #000;
	box-shadow:0 0 10px #000;
	position:fixed;
	top:0;
	left:0;
	z-index:2000;
}

.modal_content_coup{
	display:none;
	padding:10px 10px 10px 10px;
	margin:0 20px 0 5px;
	background:#ccb119;
	background-size:72px 30px;
	-webkit-border-radius:2px;
	-moz-border-radius:2px;
	border-radius:2px;
	-webkit-box-shadow:0 0 5px #000;
	-moz-box-shadow:0 0 5px #000;
	box-shadow:0 0 5px #000;
	position:fixed;
	z-index:2000;
}

/* button
------------------------*/
.modal_close{
	width:21px;
	height:21px;
	cursor:pointer;
	position:absolute;
	right:-7px;
	top:-7px;
	z-index:3000;
	display:block;
	text-indent:-9999px;
	overflow:hidden;
	background:url(img/modal/close.png) no-repeat 0 0;
	background-size:21px 21px;
}


