#simplemodal-overlay{
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #000;
	opacity: .5;
	display: none;
	z-index: 9000;
}
#simplemodal-window{
	position: fixed;
	top: 100px;
	bottom: 100px;
	z-index: 9500;
	width: 640px;
	left: 50%;
	margin-left: -320px;
	padding: 10px;
	background: #000;
	-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
	display: none;
	overflow:hidden;
}
#simplemodal-window.simplemodal-small {
	top: 150px;
	bottom: 150px;
	width: 300px;
	margin-left: -150px;
}
#simplemodal-window.simplemodal-large {
	top: 150px;
	width: 640px;
	height:400px;
	margin-left: -320px;
	
}
#simplemodal-window.simplemodal-xlarge {
	top: 50px;
    right: 50px;
    bottom: 50px;
    left:  50px;
    margin:auto;
	overflow-x: hidden;
	overflow-y: hidden;
}
#simplemodal-window .modal-header{
	font-size: 18px;
	line-height: 16px;
	text-align: right;
	margin: 10px;
	color:#fff;
	height:20px;
	font-weight:700;
	color:#fff;
}
#simplemodal-window .modal-footer{
	text-align: left;
	position: absolute;
	bottom: 0;
	color:#fff;
	left: 0;
	height:0px;
	width: 100%; 
}

#simplemodal-window .modal-header a, #simplemodal-window .modal-header a:hover, #simplemodal-window .modal-header a:link, #simplemodal-window .modal-header a:visited {
	color:#fff; 	cursor: pointer;
}
#simplemodal-window .modal-body{
	height: 100%;
	width: 100%;
}