@charset "UTF-8";
/* CSS Document */

.window{
	display:none;
	position:absolute;
	top:5%;
	left:50%;
	width:768px;
	height:440px;
	margin:0 0 0 -385px;
	background-color:#fff;
	border:1px solid #aaaaaa;
	z-index:99;
}
.vol_list{
	padding:20px;
	overflow-y:scroll;
}
#modal_list{
	height:0;
}
#modal_list p{
	margin:10px 5px;
	font-size:13px;
	line-height:20px;
}

#layer{
	display:none;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:#fff;
	opacity:0.7;
	z-index:98;
}
.btn_close{
	width:30px;
	height:30px;
	position:absolute;
	top:-35px;
	right:0;
}
.btn_close a{
	display:block;
	width:100%;
	height:100%;
	background-color:#aaa;
	position:relative;
}
.btn_close a:before,
.btn_close a:after{
	content:"";
	width:22px;
	height:2px;
	position:absolute;
	left:4px;
	top:14px;
	border-radius:3px;
	background-color:#fff;
}
.btn_close a:before{
	transform:rotate(-45deg);
}
.btn_close a:after{
	transform:rotate(45deg);
}



/*-----------------------------------------------------	*/
/*  for - 639px  */
/*-----------------------------------------------------	*/
@media screen and (max-width: 640px){
	
.window{
	width:320px;
	height:440px;
	margin:0 0 0 -160px;
}
.vol_list{
	padding:15px 10px;
}


}