html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	background:black;
    color: #FFF;
    font-family: "Helvetica", "Arial", sans-serif;
}

a:link { color : white }
a:visited { color : white }
a:hover { color : white }
a:active { color : white }

h1 {
  color: navy;
  margin-left: 20px;
}

/* Dotted red border */
hr {
  border-top: 5px dotted red;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}

th, td {
  text-align: left;
  padding: 16px;
}

.Pagetitle {
  overflow: hidden;
  font-family: "Helvetica", "Arial", sans-serif;
  font-size: 30px;
  font-weight: bold;
  padding-top:30px;
  position: center;
  text-align: center;
}

.MainBody {
  overflow: hidden;
  font-family: "Helvetica", "Arial", sans-serif;
  font-size: 30px;
  font-weight: bold;
  padding-top:20px;
  position: center;
  text-align: center;
}

.TransparentImgs {
	background:white;
}





.topnav {
  overflow: hidden;
  background-color: #333;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

.topnav .icon {
  display: none;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
/*
@media screen and (max-width: 600px) {
  .col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
} 
*/

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

