body
{
	margin: 30px;
	background-color: #F3F3F3;
}

p, li, label
{
	color: #030303;
	font: small sans-serif;
}

.topnav {
	background-color: #404040;
	padding: 10px;
	border-radius: 10px;
	position: -webkit-sticky; /* Safari */
	position: sticky;
	top: 0;
	width: 500px;
	height: 65px;
	margin: auto;
}

.topnav a {
  float: right;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #04AA6D;
  color: black;
}

.active {
  background-color: #04AA6D;
  color: white;
  padding: 15px;
  border-radius: 5px;
}

.topnav-right {
  float: right;
}

.topnav-left {
  float: left;
}

.title
{
	width: 450px;
	margin: auto;
	align: center;
}

.main-content
{
	width: 70%;
	margin: auto;
	overflow:scroll;
	overflow-x:scroll;
	display: flex;
	justify-content: center;
	align-items: center;
}

.search
{
	width: 300px;
	margin: auto;
}

.bottom
{
	width: 300px;
	margin: auto;

}

.bottom a
{
	position: absolute;
	bottom: 0;
	margin:15px;
	background-color: #04AA6D;
	color: white;
	padding: 15px;
	border-radius: 5px;
}

iframe
{
	display: block;
    border-style:none;
	height:600px;
	width:500px;
}

table, td, th
{
	color: #e0e0e0;
	font: small sans-serif;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	table-layout: fixed;
	border: 1px solid #e0e0e0;
	border-collapse: collapse;
	padding: 10px;
	border: 0px;
}
.navbar {
	background-color: #404040;
	padding: 10px;
	border-radius: 10px;
	position: -webkit-sticky; /* Safari */
	position: sticky;
	top: 0;
	width: calc(100% - 100px);
	height: 65px;
	margin: auto;
}

.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  cursor: pointer;
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.submitbutton {
  cursor: pointer;
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: #04AA6D;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn, .dropbtn:focus {
  background-color: #04AA6D;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.show {
  display: block;
}

img {
    max-width: 100%;
    max-height: 100%;
}