.topnav {
  overflow: hidden;
  background-color: #003968;
  border: 1px solid #DDD;
}

.topnav a {
  float: left;
  display: block;
  color: #dce5ed;
  text-align: center;
  padding: 11px 25px;
  text-decoration: none;
  font-family: Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.1em;
  text-shadow:1px 1px 0 #444;
}

.active {
  color: #FFF !important;
  text-shadow:0px 0px 0 transparent !important;
}

.topnav .icon {
  display: none;
}

.dropdown {
    float: left;
    overflow: hidden;
    }

.dropdown .dropbtn {
  border: none;
  outline: none;
  color: #dce5ed;
  font-family: Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.1em;
  padding: 11px 25px;
  background-color: #003968;
  text-shadow:1px 1px 0 #444;
  margin: 0;
  }

.dropdown-content {
    display: none;
    text-shadow:0px 0px 0 transparent !important;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    padding:8px 0 8px 0;
	-webkit-box-shadow: 2px 5px 30px -5px rgba(0,0,0,0.27);
	-moz-box-shadow: 2px 5px 30px -5px rgba(0,0,0,0.27);
	box-shadow: 2px 5px 30px -5px rgba(0,0,0,0.27);
	z-index: 1;
	max-height: 300px;
}

.dropdown-content a {
    float: none;
    color: black;
    text-shadow:0px 0px 0 transparent !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  color: #FFF;
  text-shadow:0px 0px 0 transparent !important;
}

.dropdown-content a:hover {
    background-color: #ececec;
    color: black;
    text-shadow:0px 0px 0 transparent !important;
}

.dropdown:hover .dropdown-content {
X   display: block;
    border: 1px solid #999;
    margin-top:0px;
    border-radius: 0 0 4px 4px;
}

.open > .dropbtn {
	background-color: #000;
	color: #FFF;
}

.open > .dropdown-content {
    display: block;
    border: 1px solid #999;
    margin-top:0px;
    border-radius: 0 0 4px 4px;
}

.triangle-with-shadow {
width: 75px;
height: 75px;
position: absolute;
top: -75px;
overflow: hidden;
/*box-shadow: 0 16px 10px -17px rgba(0,0,0,0.5);*/
}

.triangle-with-shadow:after {
content: "";
position: absolute;
width: 50px;
height: 50px;
background: #fff;
border: 1px solid #999;
transform: rotate(45deg);
top: 75px;
left: 25px;
}

.dropdown:hover,
.dropdown:hover .triangle-with-shadow:after {
box-shadow: none;
}


@media screen and (max-width: 600px) {

  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }

  .triangle-with-shadow {
  display: none;
  }

  .dropdown:hover .dropdown-content {
  border-radius: 0px;
  }
  .open > .dropdown-content {
  border-radius: 0px;
  }

}