@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  text-align: center;
}

/* Style the header */
.header {
  padding: 5px;
  text-align: center;
  background: #ffffff;
  color: white;

}

img {
  max-width: 100%;
  height: auto;
}


/* Increase the font size of the h1 element */
.header h1 {
  font-size: 40px;
}

/* Style the top navigation bar */
.tab {
	
  overflow: visible;
  background-color: #6d6e6f;

  
}

/* Style the navigation bar links */
.tab a{
  float: left;
  margin-left:0px;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 10px;
  text-decoration: none;
}

.tab button {
	margin-left:130px;
  background-color: #6d6e6f;

  border: none;
  outline: none;
  cursor: pointer;
    color: white;
  text-align: center;
  padding: 5px 2px;
  transition: 0.3s;
  font-size: 10px;
}



/* Change color on hover */
.tab button:hover {
  background-color: #a1a2a2;
  color: black;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #a1a2a2;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}

.form { 
  margin-left:100px;
}




/* Main column */
.main {   
  flex: 50%;
  background-color: white;
  padding: 20px;
  flex-wrap: wrap;
}



table{
	margin-bottom:1em
	text-align: center;
	margin:auto;
	

}


table.styled{
	margin-bottom:1em
	text-align: center;
	margin:auto;
	border: 1px solid #ccc;
    border-collapse: collapse;
	

}
table.styled td,table.styled th{padding:.50em 1em}
table.styled th{background-color:#eee;font-weight:700}
table.styled td,table.styled th{border:1px  solid #ccc}
table.styled tbody tr.even{background-color:#eff}

img.left{float:left;padding:0 1em 1em 0;width:auto}

img.right{float:right;padding:0 0 1em 1em;width:auto}

.footer {
  padding: 20px; /* Some padding */
  text-align: center; /* Center text*/
  background: #6d6e6f; /* Grey background */
  font-size:13px;
}
.footer a {
	  color: white;
}


.dropbtn {
	margin-left:130px;
  background-color: #6d6e6f;

  border: none;
  outline: none;
  cursor: pointer;
    color: white;
  text-align: center;
  padding: 5px 2px;
  transition: 0.3s;
  font-size: 10px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: fixed;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 14px 26px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color: #3e8e41;}

