 /* The navigation menu */

body {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  background-color:#886625;
background-image:url("kalimba.png")
}

.img {
 margin: 5px 10px;
}

.flexbox-container {
  display: -ms-flex;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

a:link {
  font-size: 16px;
  color: blue;
  padding: 8px 12px;
  text-decoration: none;
  text-align:center;
  display:inline-block;
}

.navbar {
  display:flex;
  align-items:center;
  background-color: #333;
  font-family: Verdana, Helvetica, Arial;
  justify-content: center;
}

/* Navigation links */
.navbar a:link {
  font-size: 20px;
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  text-align:center;
  display:inline-block;
}

.navbar a:visited {
  font-size: 20px;
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  text-align:center;
  display:inline-block;
}

/* Add a red background color to navigation links on hover */
.navbar a:hover {
  background-color: #ffd61e;
  color:black;
  text-align:center;
  display:inline-block;
}

.navbar a:active {
  background-color: #ffd61e;
  color:black;
  text-align:center;
  display:inline-block;
}

.standardlink {
  display:flex;
  align-items:left;
  justify-content: left;
}

.standardlink a:link, a:visited {
 color:blue;
}

.standardlink a:hover, a:active {  
  color: #4080ff;
  text-align:center;
  display:inline-block;
}

.selected {
 background-color: red;
}

.parent {
  background-color: #f0f0e8;
  display: flex;
  flex-direction: row;
  align-items:center;
  justify-content:center;
}

.child {
  margin: 20px 40px;
}

.child2 {
 margin: 0px 0px;
}

.footer {
  display:flex;
  justify-content: center;
  align-items: center;    
  min-height:40px;
  color: white;
  background-color: #333;
}

.line {
  flex:1;
  min-height: 32px;
  background-image: url("line.png");
}

.line2 {
  flex:1;
  min-height: 32px;
  background-image: url("line2.png");
}

.button {
  background-color: #008CBA;
  border: none;
  color: white;
  padding: 12px 64px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 32px;
  margin: 4px 2px;
  border: 2px solid #006C9A;
}

.button:hover {
  background-color: #20ACDA;
  color: white;
  display:inline-block;
  cursor: pointer;
}

.flexrow {
  display: flex;
  flex-direction: row;
  text-align: center;
  align-items:center;
}
.flexcol {
  display: flex;
  flex-direction: column;
  max-width: 940px;
  margin: auto;
  background-color:#F0F0E8;
}

.item {
  display:flex;
  justify-content: center;
  align-items: center;    
  background-color: white;
}

.th:hover {
  background-color:yellow;
}

th {
  cursor: pointer;
}

table.blueTable {
  border: 1px solid #6E4006;
  background-color: #EEE1CA;
  width: 80%;
  margin: auto;
  text-align: left;
  border-collapse: collapse;
}
table.blueTable td, table.blueTable th {
  border: 1px solid #AAAAAA;
  padding: 3px 2px;
}
table.blueTable tbody td {
  font-size: 13px;
}
table.blueTable tr:nth-child(even) {
  background: #F5CDA4;
}
table.blueTable thead {
  background: #A45D10;
  background: -moz-linear-gradient(top, #bb854c 0%, #ad6d28 66%, #A45D10 100%);
  background: -webkit-linear-gradient(top, #bb854c 0%, #ad6d28 66%, #A45D10 100%);
  background: linear-gradient(to bottom, #bb854c 0%, #ad6d28 66%, #A45D10 100%);
  border-bottom: 0px solid #444444;
}
table.blueTable thead th {
  font-size: 15px;
  font-weight: bold;
  color: #FFFFFF;
  border-left: 2px solid #D0E4F5;
}
table.blueTable thead th:first-child {
  border-left: none;
}

table.blueTable tfoot {
  font-size: 14px;
  font-weight: bold;
  color: #FFFFFF;
  background: #D0E4F5;
  background: -moz-linear-gradient(top, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
  background: -webkit-linear-gradient(top, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
  background: linear-gradient(to bottom, #dcebf7 0%, #d4e6f6 66%, #D0E4F5 100%);
  border-top: 2px solid #444444;
}
table.blueTable tfoot td {
  font-size: 14px;
}
table.blueTable tfoot .links {
  text-align: right;
}
table.blueTable tfoot .links a{
  display: inline-block;
  background: #1C6EA4;
  color: #FFFFFF;
  padding: 2px 8px;
  border-radius: 5px;
}

/* Responsive layout - makes the menu and the content (inside the section) sit on top of each other instead of next to each other */
@media (max-width: 600px) {
  section {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
