/* Normal styles for the modal1 */
#modal1 {
	left:35%;
	opacity: 0;
	position:absolute;
	top:-25%;	
	float:left;
	visibility: hidden;
	width:30%;
	box-shadow:0 3px 7px rgba(0,0,0,.25);
	box-sizing:border-box;
	transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
         z-index:9999;
}
	/* Make the modal1 appear when targeted */
	#modal1:target {
		opacity: 1;
		top:25%;
		visibility: visible;
	}
#modal1 .header1,#modal1 .footer1 {
	border-bottom: 1px solid #e7e7e7;
	border-radius: 5px 5px 0 0;
}
	#modal1 .footer1 {
		border:none;
		border-top: 1px solid #e7e7e7;
		border-radius: 0 0 5px 5px;
	}
#modal1 h2 {
	margin:0;
        width:100%;
  	text-align:center;
}

#modal1 .copy,#modal1 .header1, #modal1 .footer1 {
	padding:15px;
}
.modal1-content1 {
	background: #f7f7f7;
	position: relative;
	z-index: 20;
	border-radius:5px;
}
#modal1 .copy {
	background: #fff;
}

#modal1 .overlay {
	background-color: #000;
	background: rgba(0,0,0,.5);
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10;
}
.copy1{
width:100%;
height:230px;
padding: 1% 8% 0 8%;
background: #fff;

}