#holder {
    position: relative;
    margin: 0 auto;
    width 75%;
}

#menu {
    height:50px;
    margin: 0 auto;
    width: 90%;
    padding: 20px;
    margin-bottom: 10px;
        
        opacity: 1;
    color:white;
    background-color: black;
    font-family: "Georgia", serif;
    text-align: left;
    font-size:50px;
}

#navi {
    list-style-type: none;
    padding: 0;
    background-color: #205690;
    border-right: 1px solid #bbb;
    margin: 0 auto;
    /*overflow: auto;*/
    top: 5px;
    opacity: 1;
    width: 90%;
    padding-right: 20px;
    padding-left: 20px;
}



#navi a {
	float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

#navi a:hover {
    background-color: #111;
}


.active {
    background-color: #4CAF50;
} 

body {
        background-color: #e6e6e6;
    
}
.content {
    margin: 0 auto;
    font-family: "Times New Roman", Times, serif;
    padding: 20px;
    width: 90%;
    min-height: 60vh;
    background-color: black;
    color:white;

}

a:link {
    color: white;
}

a:link visited {
    color: white;
}

hr.style1{
	border-top: 1px solid #8c8b8b;
}

#error {
    visibility: hidden;
}

.describe {
    text-align: center;
    font-size:20px;
    
}

footer {
    clear: both;
    height: 40px;
    padding: 20px;
    margin: 0 auto;
    margin-top: 10px;
    width: 90%;
    background: black;
    color:white;

}
table {
    border: white;
    border-collapse: collapse;
    width: 100%;
}

th, td {
    text-align: left;
    padding: 8px;
    color: white;
    border: 1px solid #ddd;
}

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


th {
    background-color: #205690;
    color: white;
}

tr:hover {background-color: #4CAF50};

.error {
    color:red;
}

.button {
    background-color: #205690; /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    margin-top: 3px;
}
.buttonStyle {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    margin-top: 3px;
}

/* Dropdown Button */
.dropbtn {
    background-color: #205690;
    color: white;
    padding: 14px 16px;
    font-family: "Times New Roman", Times, serif;
	font-size: 16px;
    border: none;
    cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #205690;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #4CAF50}

/* Show the dropdown menu on hover */
.dropbtn:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: black;
}

.dropdown:hover .dropdown-content {
   display: block;
}