 h1 {
    font-size: 32px;
    color: #3B8386;
    font-family: 'georgia';
 }
 h2{
    font-size: 24px;
    color: #55A8AC;
    font-family: 'georgia';
 }
 p {
    font-family: 'georgia';
 }

body {
  margin: 0px;
}

.caption {
    color: #fff;
    background-color: #4CAF50;
    font-size: 30px;
    padding-bottom: +8px;
    padding-left: +8px;
}
 
.content {
    padding-left: +8px;
    padding-right: +8px;
}

.menu {
    color: #fff;
    background-color: #A7CF5A;
    font-size: 16px;
    padding: 2px;
    padding-bottom: 4px;
    font-family: 'georgia';
    text-shadow: 1px 1px 1px rgba(0,0,0,.3);
 }
.menu a:link { color: white; }
.menu a:visited { color: #EEEEEE; }
.menu a:hover { color: #15393B; }
.menu a:active { color: white; }

table a:link { color: #1B4D1E; }
table a:visited { color: #475B20; }
table a:hover { color: #475B20; }
table a:active { color: 1B4D1E; }

.dropbtn {
    color: white;
    background-color: #A7CF5A;
    font-size: 16px;
    border: none;
    font-family: 'georgia';
    text-shadow: 1px 1px 1px rgba(0,0,0,.3);
}

.dropdown {
    font-family: 'georgia';
    position: relative;
    display: inline-block;
}

.dropdown-content {
    font-family: 'georgia';
    display: none;
    position: absolute;
    background-color: #A7CF5A;
    min-width: 240px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    font-family: 'georgia';
    color: white;
    padding: 1px 40px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:link { color: white; }
.dropdown-content a:visited { color: white; }
.dropdown-content a:hover { color: white; }
.dropdown-content a:active { color: white; }

.dropdown-content a:hover {background-color: #77963B;}

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

.dropdown:hover .dropbtn {background-color: #77963B;}

ul.links {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
 
li.links {
    font: 200 15px/1.5 Georgia, sans-serif;
    border-bottom: 1px solid #ccc;
}
 
li.links:last-child {
    font-family: 'georgia';
    border: none;
}

li.links a {
    text-decoration: none;
    color: #000;
    width: 200px;

    -webkit-transition: font-size 0.3s ease, background-color 0.3s ease;
    -moz-transition: font-size 0.3s ease, background-color 0.3s ease;
    -o-transition: font-size 0.3s ease, background-color 0.3s ease;
    -ms-transition: font-size 0.3s ease, background-color 0.3s ease;
    transition: font-size 0.3s ease, background-color 0.3s ease;
}
 
li.links a:hover {
    font-size: 16px;
    background: #f6f6f6;
}

table {
    color: white;
    font-family: Georgia, sans-serif;
    width: 100%;
}

td, th {  
    border: 1px solid transparent; /* No more visible border */
    height: 30px; 
    transition: all 0.3s;  /* Simple transition for hover effect */
}

th {
    background: #317F36;  /* Darken header a bit */
    font-weight: bold;
}

td.center {  
    background: #FAFAFA;
    text-align: center;
}

td.left {  
    background: #FAFAFA;
    text-align: left;
}


/* Cells in even rows (2,4,6...) are one color */        
tr:nth-child(even) td { color: #333; background: #F1F1F1; }   

/* Cells in odd rows (1,3,5...) are another (excludes header cells)  */        
tr:nth-child(odd) td { color: #333; background: #FEFEFE; } /* Cells in even rows (2,4,6...) are one color */        