
.backgroundgray {

	/* http://webclub.tistory.com/189 */

	position: fixed;
	top : 0;
	left : 0;
    width: 100%;
    height: 100%;
	background: #000;
	z-index: -1;
	opacity : 0.6;
	/*filter : alpha(opacity=80);*/
	z-index : 110;
}

.popup_wait {
	
	/*둥근사각형*/
	border-radius: 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	-ms-border-radius: 20px;

    position: fixed;


	/* 팝업 중앙 위치 설정 px */
	/*-------------------------------------------*/
	/* 요부분의 크기는 div 에서 직접 입력할 것
	/*-------------------------------------------*/
	
	width: 500px;
    margin-left: -250px;
    height: 400px;
    margin-top: -200px; 
	

	/*-------------------------------------------*/
	/* 화면중앙을 %로 계산한 경우 - 혹시나 */
	/*-------------------------------------------*/
	/*
	width: 40%;
    margin-left: -20%; 
    height: 350px;
    margin-top: -150px; 
	*/


    left: 50%;
    top: 50%;


    overflow: auto;

    /* decoration */
    border: 1px solid #000;
    background-color: #eee;
    padding: 2em;
    box-sizing: border-box;

	z-index : 111; /* 숫자가 높아야 위에 간다 */
	

	/*opacity : 0;*/
	display:none;
	/*display:hidden;*/
	/*opacity : 0;*/
}


.divshow {
	display:inline;
	/*display:block;*/
}
