#simplemodal-overlay{
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: white;
	opacity: .8;
	display: none;
	z-index: 9000;
}
#simplemodal-window{
	position: fixed;
	top: 100px;
	bottom: 100px;
	z-index: 9500;
	border: 1px solid black;
	border-radius: 50px;
	box-shadow: 0 0 0 16px #cccccc;
	width: 400px;
	left: 50%;
	margin-left: -200px;
	padding: 10px;
	background: white;
	display: none;
	/* overflow-x:  hidden; */
	/* overflow-y: scroll; */
}
#simplemodal-window.simplemodal-small {
	top: 150px;
	bottom: 150px;
	width: 300px;
	margin-left: -150px;
}
#simplemodal-window.simplemodal-large {
	top: 50px;
	bottom: 50px;
	width: 650px;
	margin-left: -325px;
}
#simplemodal-window.simplemodal-xlarge {
	top: 50px;
    right: 50px;
    bottom: 50px;
    left:  50px;
    margin: 0;
    width: auto;
}
#simplemodal-window .modal-header{
	font-size: 24px;
	line-height: 36px;
	text-align: center;
	height: 36px;
	border-bottom: 1px solid #666;
	border-radius: 50px 50px 0 0;
	margin: -10px -10px 0;
}
#simplemodal-window .modal-footer{
	font-size: 16px;
	line-height: 36px;
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 36px;
	border-top: 1px solid #666;
}
#simplemodal-window .modal-body{
	height: 100%;
	height: calc( 100% - 72px );
	overflow-y: scroll;
}