.simpleModal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 10000; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
	text-align:center;
}

.simpleModal .modal-box {
	margin: 15% auto; /* 15% from the top and centered */
	position:relative;
	display:inline-block;
	z-index: 10001;
}

.simpleModal .modal-box .closeButton {
	display:block;
	position: absolute;
	top: -10px;
	right: -10px;
	width: 30px;
	height: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background-color: #fff;
	-webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.34);
	-moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.34);
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.34);
	cursor: pointer;
	z-index: 10002;
}

.simpleModal .modal-box .closeButton:before {
	content: "X";
	display: inline-block;
	line-height: 30px;
	width:100%;
	vertical-align: middle;
	text-align: center;
	font-family: Arial Black;
}
