@charset "utf-8";
/* CSS Document */


ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
  font-weight:normal;
}

li {
  float: left;
  font-weight:normal;
}

li a, .dropbtn, A:ACTIVE, A:FOCUS, A:LINK, A:VISITED {
  display: inline-block;
  color:#FFF;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-weight:normal;
}

li a:hover, .dropdown:hover .dropbtn {
  background-color: red;
  font-weight:normal;
  text-decoration: none;
}

li.curr {
  background-color: #040b99;
  font-weight:normal;
}

li.dropdown {
  display: inline-block;
  font-weight:normal;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  font-weight:normal;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  font-weight:normal;
}

.dropdown-content a:hover {
	background-color: #e3e3e3;
	font-weight:normal;}

.dropdown:hover .dropdown-content {
  display: block;
  font-weight:normal;
}

li.dropdownCurr {
  display: inline-block;
  background-color: #5c0499;
  font-weight:normal;
}

.dropdownCurr-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  font-weight:normal;
}

.dropdownCurr-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  font-weight:normal;
}

.dropdownCurr-content a:hover {
	background-color: #e3e3e3;
	font-weight:normal;
	}

.dropdownCurr:hover .dropdownCurr-content {
  display: block;
  font-weight:normal;
}
