@charset "utf-8";
/* CSS Document */


.navbar {
  overflow: hidden;
  background-color: #f1f1f1;
}

.navbar a {
  float: left;
  color: #a52a2a;
  text-align: center;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: 550;
  border-style: solid;
  border-width: medium;
  border-color: #fff;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border-style: solid;
  border-width: medium;
  border-color: #fff;
  outline: none;
  color: #a52a2a;
  padding: 10px 14px;
  background-color: inherit;
  font: inherit;
  margin: 0;
  font-weight: 550;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #b0c4de;
  color: #fff;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: #a52a2a;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  font-weight: 500;
}

.dropdown-content a:hover {
  background-color: #b0c4de;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 50%;
  padding: 10px;
  background-color: #f1f1f1;
  height: inherit;
}

/* Style links inside the columns */
.column a {
  float: none;
  color: #a52a2a;
  padding: 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a background color on hover */
.column a:hover {
  background-color: #ddd;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}