#header{
  background-color: #333;
  height: 50px;
  width: 100%;
  overflow: hidden;
  border-radius: 5px 5px 5px 5px;
  box-shadow: 3px 3px 10px grey;
}

#footer{
}

#loginBody{
	background: lightgrey;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#overlay {
  position: fixed; /* Sit on top of the page content */
  display: none; /* Hidden by default */
  width: 100%; /* Full width (cover the whole page) */
  height: 100%; /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5); /* Black background with opacity */
  z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
  cursor: pointer; /* Add a pointer on hover */
}

#overData {
  position: absolute; /* Sit on top of the page content */
  display: block; /* Hidden by default */
  width: 70%; 
  top: 10%;
  left: 15%;
  background-color: white;
  border: 2px solid black;
  box-shadow: 3px 3px 10px black;
}

/* Add a black background color to the top navigation */
.topnav {
  background-color: #333;
  height: 50px;
  width: 100%;
  overflow: hidden;
  border-radius: 5px 5px 5px 5px;
  box-shadow: 3px 3px 10px grey;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  height: 50px;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
  height: 50px;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #4CAF50;
  color: white;
  height: 50px;
}

#logout {
  float: right;
  height: 50px;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

#TableWrapper{
    padding: 10px 10px 10px 10px;
}

table { 
  color: #333;
  font-family: Helvetica, Arial, sans-serif;
  width: 100%;
  /* Table reset stuff */
  border-collapse: collapse; border-spacing: 0; 
  box-shadow: 3px 3px 10px grey;
}
		
td, th {  border: 0 none; height: 30px; }
			
th {
  /* Gradient Background */
	background: linear-gradient(#333 0%,#444 100%);
	color: #FFF; font-weight: bold;
	height: 40px;
}
		
td { background: #FAFAFA; text-align: center; }

/* Zebra Stripe Rows */
		
tr:nth-child(even) td { background: #EEE; border:1px solid black;} 
tr:nth-child(odd) td { background: #FDFDFD; border:1px solid black;}


/* Add border-radius to specific cells! */
tr:first-child th:first-child { 
  border-radius: 5px 0 0 0; 
} 

tr:first-child th:last-child { 
  border-radius: 0 5px 0 0; 
}

