/*This is a CSS that opens and 
closes a form used to "email me"*/		  
					  #modal_wrapper.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_window {
						display: none;
						z-index: 200;
						position: fixed;
						left: 50%;
						top: 60%;
						width: 60%;
						overflow: auto;
						padding: 0px 50px;
						background: #1d242a;
					  }

					  #modal_wrapper.overlay #modal_window {
						display: block;
					  }