/* ------------- Menu de Navegacion -------------------------- */
/* Navigation First Level */
#nav
{
  list-style: none;           
  padding-left:0;
  display: flex;
  justify-content: space-between;
  margin: 38px 0 2px 0;
}

#nav li, #nav li a /*First level of menu texts*/
{
  color: #0E0B4C; 
  font-weight: bold;
  font-size: 16px;
}
#nav li
{
  cursor: default;
  align-content: end;
}
#nav li a:hover, #nav li:hover
{
  color: #231f20; 
  text-decoration:none;
}

/* Navigation Second/Third Level */
#nav li ul
{
  padding:0.5em 0 0.5em 0;
  display:none;
  position:absolute;
  margin-left:-10px;
  margin-right:13px;
  z-index:99;
  background-color: #c3c3ca;
  opacity: 0.9;
}
#nav li ul{
	position:absolute;
	display:none;
	height:auto;
}
#nav li:hover > ul{
	display:block
}

#nav li li
{
  position:relative;
	display:block;
	float:none;
	width:180px;
  padding:5px 0.5em 5px 0.5em;
}
#nav li li a{
  font-weight: normal;
  color: #0E0B4C; 
}
#nav li li:hover {
  background-color: #ef573e;
}
#nav li li a:hover
{
  font-weight: bold;
}
