/*This is the CSS that opens and 
closes a form used to display a survey*/		  
					  #modal_wrapper1.overlay:before {
						content: " ";
						width: 100%;
						height: 100%;
						position: fixed;
						z-index: 100;
						top: 0;
						left: 0;
						background: #000;
						background: rgba(0,0,0,0.7);
					  }

					  #modal_window1 {
						display: none;
						z-index: 200;
						position: fixed;
						left: 50%;
						top: 60%;
						width: 60%;
						overflow: auto;
						padding: 0px 50px;
						background: #1d242a;
					  }

					  #modal_wrapper1.overlay #modal_window1 {
						display: block;
					  }