<style type="text/css">
<!--
.texto1 {
	font-family: Verdana; 
	font-size: 18px; 
	Line-Height: 22px;
	color: #000000;
	text-decoration: none;
}
.textoamarillo {
	font-family: Verdana; 
	font-size: 15px; 
	Line-Height: 22px;
	color: #F9C306;
	text-decoration: none;
}

.textonegrob {
	font-family: Verdana; 
	font-size: 15px; 
	Line-Height: 22px;
	color: #000000;
	text-decoration: none;
}
.verde {
	font-family: Verdana; 
	font-size: 15px; 
	Line-Height: 22px;
	color: #00870B;
	text-decoration: none;
}

.textopie {
	font-family: Verdana; 
	font-size: 16px; 
	Line-Height: 24px;
	color: #000000;
	font-weight: bold;
	text-decoration: none;
}
.textopie:hover {
	font-family: Verdana; 
	font-size: 16px; 
	Line-Height: 24px;
	color: #000000;
	font-weight: bold;
	text-decoration: underline;
}
.texto {
	font-family: Verdana; 
	font-size: 15px; 
	Line-Height: 22px;
	color: #000000;
	text-decoration: none;
}
.link {
	font-family: Verdana; 
	font-size: 15px; 
	Line-Height: 22px;
	color: #000000;
	text-decoration: none;
}
.link:hover {
	font-family: Verdana; 
	font-size: 15px; 
	Line-Height: 22px;
	color: #000000;
	text-decoration: underline;
}
.legal {
	font-family: Verdana; 
	font-size: 13px; 
	Line-Height: 18px;
	color: #000000;
	text-decoration: none;
}

.mgrisdark {
	font-family: Verdana; 
	font-size: 12px; 
	Line-Height: 18px;
	color: #000000;
	text-decoration: none;
}

.titulo {
	font-family: Verdana; 
	font-size: 14px; 
	Line-Height: 22px;
	color: #55802B;
	text-decoration: none;
}

.subtitulo {
	font-family: Verdana; 
	font-size: 13px; 
	Line-Height: 20px;
	color: #333333;
	text-decoration: none;
}


.negro {
	font-family: Verdana; 
	font-size: 15px; 
	Line-Height: 22px;
	color: #000000;
	text-decoration: none;
}
.negro:hover {
	font-family: Verdana; 
	font-size: 15px; 
	Line-Height: 22px; 
	color: #000000;
	text-decoration: underline;
}


.Boer 		{
	font-family: Arial, Helvetica, sans-serif; 
	font-size: 14px; 
	color: #000000; 
	background-color: #FFFFFF; 
	border: 1px #5A6C89 solid
}





body {	
	margin: 10px 0 0 0;
	background-color: #ffffff;
	display: flex; 
    justify-content: center; /* Center horizontally */ 
    align-items: center; /* Center vertically */ 
  }

.boton {
    height: 22px;
    background-color: #555555;
    box-shadow: 3px 3px 2px #888888; 
	
}

div.boxleft {
    float: left;
    max-width: 740px;
    text-align: left;
	margin: 10px;
	font-family: Verdana; 
	font-size: 15px; 
	Line-Height: 22px;
	color: #000000;
	text-decoration: none;
}

div.boxright {
    float: right;
    max-width: 400px;
    text-align: left;
    padding: 2px 2px;
	margin: 10px;
	font-family: Verdana; 
	font-size: 15px; 
	Line-Height: 22px;
	color: #000000;
	text-decoration: none;
    border: 1px solid gray;
	box-shadow: 2px 2px 1px #888888;
}

div.boximg {
    float: right;
    max-width: 400px;
    text-align: left;
	margin: 20px;
	font-family: Verdana; 
	font-size: 13px; 
	Line-Height: 20px;
	color: #000000;
	text-decoration: none;
	box-shadow: 3px 3px 1px #888888;
}


div.boximgmed {
    float: right;
    max-width: 400px;
    text-align: left;
	margin: 20px;
	font-family: Verdana; 
	font-size: 13px; 
	Line-Height: 20px;
	color: #000000;
	text-decoration: none;
	box-shadow: 2px 2px 1px #888888;
}

div.boximgBajo {
    float: right;
    max-width: 400px;
    text-align: left;
	margin: 20px;
	font-family: Verdana; 
	font-size: 13px; 
	Line-Height: 20px;
	color: #000000;
	text-decoration: none;
	box-shadow: 2px 2px 1px #888888;
}



/* Estilo base para el menú */
nav {
 background-color: #D9EDEC;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  font-size: 16px;
  font-family: Verdana; 
  justify-content: center;
 }

.menu li {
  position: relative;
}

.menu li a {
  display: block;
  padding: 14px 18px;
  color: black;
  font-weight: bold;
  text-decoration: none;
  background-color: #D9EDEC;

}

.menu li a:hover {
  background-color: #CAEDED;
}

/* Estilo para el submenú (oculto por defecto) */
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #D9EDEC;
   
  z-index: 1;
}

.submenu li a {
  padding: 10px 20px;
  white-space: nowrap; /* Evitar que el texto se ajuste a otra línea */
}

/* Mostrar el submenú al pasar el ratón */
.menu li:hover .submenu {
  display: block;
}

.submenu li a:hover {
  background-color: #CAEDED;
}

@media (max-width: 768px) {
  .menu li:hover .submenu {
    left: auto;
    right: 0;
    transform: translateX(0);
  }

}
-->
</style>