@charset "UTF-8" ;

.modal-content {
	width: 50% ;
	margin: 0 ;
	padding: 0 ;
	background: #fff ;
	position: fixed ;
	display: none ;
	z-index: 2 ;
}
  
#modal-overlay {
	z-index: 1 ;
	display: none ;
	position: fixed ;
	top: 0 ;
	left: 0 ;
	width: 100% ;
	height: 120% ;
	background-color: rgba( 0,0,0, 0.75 ) ;
}

a#modal-close {
	display: block;
	width: 56px;
	height: 56px;
	background-image: url(../img/close.png);
	position: absolute;
	top: 0;
	right: 0;
}

a#modal-close:hover {
	filter: alpha(opacity=70);
	-moz-opacity: 0.7;
	opacity: 0.7;
	cursor: pointer;
}