#modalOverlay {
	width:100%;
	height:100%;
	z-index:2; /* places the modal overlay between the main page and the modal dialog*/
	background-color:#000;
	opacity:0.5;
	position:fixed;
	top:0;
	left:0;
	display:none;
	margin:0;
	padding:0;
}

#modal1 {
	width:40%;
	margin-left:auto;
	margin-right:auto;
	padding: 1px;
	border: thin #000 solid;
	background-image:url(../images/backgrounds/background_transparent_black.png);
	z-index:3; /* places the modal dialog on top of everything else */
	position:fixed;
	top:10%;
	left:30%;
	-webkit-border-bottom-left-radius:8px;
	-webkit-border-bottom-right-radius:8px;
	display:none;
}
#modal1 h1 {
	text-align:center;
}
#modal1 a#cancel1, #modal1 button#cancel1{
    position: absolute;
    width: 30px;
    height: 30px;
    top: -8px;
    right: -8px;
}

#modal1 a#cancel1 img, #modal1 button#cancel1 img {
    margin-left: -6px;	
    margin-top: 1px;
    background-color: transparent;
}

.modalCloseButton1 .cancel1 {
	float:right;
	position:absolute;
	top:10px;
	left:92%;
	height:25px;
}
.modalCloseButton1 .cancel1 img {
	border:0;
}

.screen-reader-offscreen {
	position:absolute;
	left:-999px;
	width:1px;
	height:1px;
	top:auto;
}
