#mask {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9000;
	background-color: #000;
	display: none;
}

#boxes {
	position: absolute;
	width: 750px;
}

#boxes #dialog {
	display: none;
	z-index: 9500;
	position: absolute;
	width: 750px;
	height: 350px;
	padding: 10px;
	background-color: #ffffff;
	font-family: 'Segoe UI Light', sans-serif;
	font-size: 10pt;
	overflow: auto;
	border-radius: 15px;
	text-align: center;
	border: solid 5px #f9c200;
	-webkit-box-shadow: 5px 10px 5px #000;
	-o-box-shadow: 5px 5px 10px #000;
	box-shadow: 5px 5px 10px #000;
}

#boxes #close {
	background: no-repeat;
	background-size: cover;	
	background-image: url('../images/close.png');
	width: 35px;
	height: 35px;
	z-index: 9999;
	cursor: pointer;
	position: absolute;
	display: none;
}