/* ======================================================================== POPUP */
#popup-container {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 2000;
}
#popup-container #bk {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #000000;
	z-index: 20;
	cursor: pointer;
}
#popup-container #close {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 50;
	cursor: pointer;
}
#popup-contents {
	position: absolute;
	left: 50%;
	top: 50px;
	width: 450px;
	height: 500px;
	margin: 0 0 0 -225px;
	padding: 0;
	z-index: 30;
	overflow: auto;
	background-color: #fff;
	border-radius: 6px;
	box-shadow: rgba(0, 0, 0, .2) 0 0 4px 4px;
	-webkit-box-shadow: rgba(0, 0, 0, .2) 0 0 4px 4px;
	-moz-box-shadow: rgba(0, 0, 0, .2) 0 0 4px 4px;
}
.sup #popup-contents {
	width: 600px;
	height: 300px;
	margin: 0 0 0 -300px;
}
#popup-contents iframe {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	vertical-align: bottom;
}