#popup-window {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	overflow: auto;
	text-align: center;
	z-index: 9999;
}
#popup-window .fore {
	background-color: #fff;
	border-radius: 10px;
	margin: 20px auto 0;
	min-height: 500px;
	overflow: hidden;
	padding: 20px;
	position: relative;
	width: 920px;
}
#popup-window .close {
	background: url('photonav.gif') no-repeat scroll 0 -57px rgba(0, 0, 0, 0);
    height: 17px;
    right: 10px;
    position: absolute;
    top: 9px;
    width: 17px;
	opacity: 0.5;
	cursor: pointer;
}
#popup-window .close:hover {
	opacity: 0.8;
}