/* Background Color (Entire Page) */
body {
	background-color: #a2a2a2;
	padding: 15px;
	font-family: sans-serif;
}

/* Add a black background color to the top navigation */
.topnav {
  background-color: #444;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 10px 15px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #88cffc;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #045aaa;
  color: white;
}

/* Table Design */
table {
    border-collapse: collapse;
    margin: 25px 0;
    min-width: 400px;
    text-align: left;
}
tbody th {
    padding: 10px;
	background-color: #888000;
	color: #ffffff;
}
tbody td {
    padding: 10px;
}
tbody tr {
    border-bottom: thin solid #dddddd;
}
tbody tr:hover {
	background-color: #aaa000;
}
