.navsup {
	overflow: hidden;
	background: linear-gradient(-85deg, White, White, Snow, GhostWhite, AliceBlue, LightSteelBlue, SteelBlue, DarkBlue);
	background: -webkit-linear-gradient(-85deg, White, White, Snow, GhostWhite, AliceBlue, LightSteelBlue, SteelBlue, DarkBlue);
  z-index: 100;
}

.navsup a {
  float: left;
  display: block;
  font-size: 18px;
  color: #191970; 
  text-align: center;
  padding: 5px 16px;
  text-decoration: none;
}

.navsup .active {
  background-color: #91A8D0;
  color: white;
}

.navsup .icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  border: none;
  color: #191970;
  font-size: 18px;
  text-align: center;
  padding: 5px 16px;
  text-decoration: none;
  background-color: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #F9F9F9;
  min-width: 150px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown-content a {
  float: none;
  color: #191970;
  font-size: 16px;
  padding: 1px 16px;
  text-decoration: none;
  border-bottom-color: red;
  display: block;
  text-align: left;
}

.navsup a:hover .dropdown:hover .dropbtn {
  background-color: #B0C4DE;
  color: white;
}

.dropdown-content a:hover {
  background-color: #DDD;
  color: black;
}

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

/* Add an active class to the active dropdown button */

.dropbtn:active {
  background-color: #6699CC;
  color: white;
}

/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.contenedor-despliegue {
  display: none;
  background-color: #262626;
  padding-left: 10px;
}

@media screen and (max-width: 600px) {
  .navsup a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .navsup a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .navsup.responsive {position: relative; 
    }
  .navsup.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .navsup.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .navsup.responsive .dropdown {float: none;}
  .navsup.responsive .dropdown-content {position: relative;}
  .navsup.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}

/* Optional: Style the caret down icon */
.icon {
  float: right;
  padding-right: 8px;
  font-size: 2vw;
  color: #6699CC;
}

/* Fixed navlateral, full height */
.navlateral {
  width: 98%;
  min-height: 100px;
  padding-top: 1.5%;
  left: 2%;
  background-color: transparent;
  overflow-x: hidden;
}

.navlateral_titulo {
  padding: 5px 0px;
	font-size: 1.3vw;
	color: #F8F8F8;
	text-align: center;
	text-decoration: underline;
	background-color: #336699;	
	border-top: 1px solid #336699;
}

.navlateral a {
  padding: 2px 0px 2px 10px;
  text-decoration: none;
  font-size: 1vw;
  color: #191970; 
  display: block;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
	background-color: #F9F9F9;
	border: 1px solid #DDD;
}

.navlateral_subtitulo {
  padding: 5px 0px 5px 5px;
  text-decoration: none;
  color: #191970; 
  display: block;
  width: 100%;
  text-align: left;
  outline: none;
	line-height: 16px;
	font-size: 1.2vw;
	color: #F8F8F8;
	background-color: #6699CC;	
}

.navlateral a:hover {
  background-color: #91A8D0;
  color: #FFFFFF;
}

@media only screen and (max-width: 600px) {
  .navlateral {padding-top: 35px;}
}