header {
  position: fixed;
  top: 0;
  left: 0;
  margin: auto;
  width: 100%;
  z-index:1;
  background:#ddd;
}

h1 {
	text-align: center;
	font-weight: normal;
	display: block;
 	margin: 20px 10px 5px 0;
	padding: 0 0 0 0;
	color: #3f3f42;
  font-size: 20pt;
}
h2 {
	font-weight: normal;
	text-align: left;
  text-decoration: none;
  margin: 0 10px 5px 0;
  font-size: 15pt;
	color: #aaa;
}
h3 {
	 font-size: 13pt;
	margin: 50px 250px 35px 100px;
	color: #555;//#BA2444;//#555;	
}
h4 {
	 font-size: 10pt;
	margin-top: 40px;
	margin-bottom: 15px;
}
h5 {
	text-align: center;
	font-weight: normal;
	display: block;
 	margin: 20px 10px 5px 0;
	padding: 0 0 0 0;
	color: #888;
  font-size: 18pt;
}
h6 {
	text-align: center;
	font-weight: normal;
	display: block;
 	margin: 20px 10px 5px 0;
	padding: 0 0 0 0;
	color: #F6F5FF;
  font-size: 20pt;
}




.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.5); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  //display: block;
  padding: 20px;
  width: 60%;
  //max-width: 800px;
}

/* Add Animation */
.modal-content, #caption {  
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0)} 
  to {-webkit-transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}


/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}




/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}

