/* CSS Document */
h1 {
	font-family: 'Montserrat', sans-serif;
	font-size: 32 px;
	font-weight: bold;
	color: black;
	text-align: left;
	padding: 10px 0px 0px 0px;
	margin: 0px 20px 0px 20px;
}
/* h2: Header 2 - Segundo nivel de titulos.
*/
h2 {
	font-family: 'Montserrat', sans-serif;
	font-size: 28px;
	font-weight: bold;
	color: black;
	text-align: left;
	padding: 3px 0px 0px 0px;
	margin: 28px 20px 0px 20px;
/*	border-top: 1px solid gray; */
}
.h2mtcorto {
	margin-top: 3px;
}
/* h3: Header 3 - Tercer nivel de titulos.
*/
h3 {
	font-family: 'Montserrat', sans-serif;
	font-size: 24px;
	font-weight: bold;
	color: #000000;
	text-align: left;
	padding: 3px 0px 0px 0px;
	margin: 24px 20px 0px 70px;
}
@media (max-width: 768px) {
	h3 {
		padding: 3px 0px 0px 0px;
		margin: 24px 20px 0px 20px;
	}
}
/* h4: Header 4 - Cuarto nivel de titulos.
*/
h4 {
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: bold;
	color: #000000;
	text-align: left;
	padding: 3px 0px 0px 0px;
    margin: 20px 20px 0 120px !important;
}
@media (max-width: 768px) {
	h4 {
		padding: 3px 0px 0px 0px;
		margin: 20px 20px 0px 20px !important;
	}
}
/* h5: Header 5 - Titulo de la sección.
*/
h4 a {
	font-size: 20px;
	font-weight: bold;
}
h5 {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #000000;
	text-align: left;
	padding: 3px 0px 0px 0px;
	margin: 16px 20px 0px 120px;
}
@media (max-width: 768px) {
	h5 {
		padding: 3px 0px 0px 0px;
		margin: 16px 20px 0px 20px;
	}
}
/* h6: Títulos en Bullets.
*/
h6 {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: black;
	text-align: left;
	padding: 0px 0px 3px 0px;
	margin: 0px 0px 0px 0px;
}
/* p: Paragraph - usado para formatear el texto general del sitio.
*/
p {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: normal;
	color: black;
	text-align: left;
	padding: 3px 0px 0px 0px;
	margin: 0px 20px 0px 120px;
}
@media (max-width: 768px) {
	p {
		padding: 3px 0px 0px 0px;
		margin: 0px 20px 0px 20px;
	}
}
blockquote {
	font-family: 'Montserrat', sans-serif;
	font-style:italic;
	font-size: 16px;
	font-weight: normal;
	padding: 3px 0px 0px 5px;
	margin: 16px 20px 10px 20px;		/* Si se cambia en esta clase, cambiar también en */
	border-left: 7px  solid darkgray;	/* las clases modificadoras que siguen */
	border-top: 2px solid darkgray;
}
blockquote ul {
	margin-left:10px;
}
blockquote li {
	margin-left:10px;
}
/* modificadores de blockquote */
.atentiRed {
	font-family: 'Montserrat', sans-serif;
	font-style:normal;
	font-size: 16px;
	font-weight: normal;
	padding: 10px 0px 0px 10px;
	margin: 16px 20px 10px 20px;
	border-left: 7px  solid red;
	border-top: 2px solid red;
}
.atentiBlue {
	font-family: 'Montserrat', sans-serif;
	font-style:normal;
	font-size: 16px;
	font-weight: normal;
	padding: 10px 0px 0px 10px;
	margin: 16px 20px 10px 20px;
	border-left: 7px  solid blue;
	border-top: 2px solid blue;
}
.atentiGreen {
	font-family: 'Montserrat', sans-serif;
	font-style:normal;
	font-size: 16px;
	font-weight: normal;
	padding: 10px 0px 0px 10px;
	margin: 16px 20px 10px 20px;
	border-left: 7px  solid #07F300;
	border-top: 2px solid #07F300;
}
.forcetoleftmargin {
	margin-left: -150px;
}
@media (max-width: 768px) {
	.forcetoleftmargin {
	margin: 10px 20px 10px 20px;
	}
}
/* -- UL --*/
ul {
    list-style: none;
	padding: 3px 0px 0px 0px;
	margin: 0px 20px 0px 120px;
}
li {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
	font-weight: normal;
	color: black;
    position: relative;      	/* para que ::before se posicione relativo al li */
    padding-left: 22px;      	/* espacio reservado para la viñeta */
	padding-top: 3px;
	padding-bottom: 0px;
}
li::before {
    content: "▶";
    font-family: 'Montserrat';
    font-size: 12px;
    color: blue;
    position: absolute;       /* posición relativa al li */
    left: 8px;                  /* empieza en el borde izquierdo del li */
    top: 5px;                   /* ajusta verticalmente si hace falta */
}
ol.olAlpha {
	list-style-type: lower-alpha;
	list-style-position: outside;
	padding: 3px 0px 0px 15px;
	margin: 0px 20px 0px 120px;
}
ol.olAlpha li {
  padding-left: 5px;
}

ol.olAlpha li::before {
  content: none !important;
}

ol.olAlpha li::marker {
  font-weight: bold;
}
ol.olNum {
	list-style-type:decimal;
	list-style-position: outside;
	padding: 3px 0px 0px 15px;
	margin: 0px 20px 0px 120px;
}
ol.olNum li {
  padding-left: 5px;
}

ol.olNum li::before {
  content: none !important;
}

ol.olNum li::marker {
  font-weight: bold;
}
/* date: Date - usado para formatear la fecha en el tope de cada pagina.
*/
date {
	font-family: 'Montserrat', sans-serif;
	font-size: small;
	font-weight: normal;
	color: black;
	text-align: right;
	padding: 0px 10px 0px 0px;
}
a,
a {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: black;
  text-decoration: none;
}
a:visited {
  color: black;
}
a:hover,
a:focus {
  color: blue;
}
a:active {
  color: black;
}
/* Caracteres encerrados en círculos.
*/
.circledChar-Navy {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  background-color: navy;
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 14px;
}
.circledChar-BLue {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  background-color: blue;
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 14px;
}
.circledChar-Red {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  background-color: red;
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 14px;
}

/* Captions para formatear los diferentes tipos de <figcaptions>
*/
.imgFull-caption {
	font-family: 'Montserrat', sans-serif;
	font-size: x-small;
	color: black;
	text-align: left;
	margin: 2px 0px 6px 0px;
}
.imgFloat-caption {
	font-family: 'Montserrat', sans-serif;
	font-size: x-small;
	color: black;
	text-align: right;
	margin: 2px 0px 6px 0px;
}
/* abstract: Usado para formatear el texto en el abstract de las rutas.
*/
.abstractTabla {
	border-collapse: collapse;
	border:none;
	padding: 3px 0px 0px 0px;
	margin: 0px 20px 0px 120px;
}
@media (max-width: 768px) {
	.abstractTabla {
		padding: 3px 0px 0px 0px;
		margin: 0px 20px 0px 20px;
	}
}
.abstractDato {
	vertical-align:top;
	text-align: right;
	padding: 5px 6px 0px 0px;
}
.abstractCont {
	vertical-align:top;	
	text-align: left;
	font-weight: bold;
	padding: 5px 0px 0px 0px;
}
/* Tabla de Waypoints.
*/
/*-----------------------------------------------------------------------------------------
   Tabla de Waypoints
*/
.wpContainer {
	width: 100%;
}
.wpTabla {
	table-layout: fixed;
	border-collapse: collapse;
	border:1px solid black;
	box-shadow:-5px 5px 5px gray;	
	padding: 3px 20px 0px 0px;
	margin: 0px 20px 0px 120px;
}
@media (max-width: 768px) {
	.wpTabla {
		padding: 3px 0px 0px 0px;
		margin: 0px 20px 0px 20px;
	}
}
.wpHeader {
	background-color: navy;
	vertical-align: bottom;
	color:white;
}
.wpRow {
	vertical-align: top;
}
.wpColNombre {
	text-align: left;
	padding: 4px 4px 4px 4px;
	border:1px solid gray;
	width:120px;
}
.wpColDescripcion {
	text-align: left;
	padding: 4px 4px 4px 4px;
	border:1px solid gray;
}
.wpColLatitud {
	text-align: right;
	padding: 4px 4px 4px 4px;
	border:1px solid gray;
	width:120px;
}
.wpColLongitud {
	text-align: right;
	padding: 4px 4px 4px 4px;
	border:1px solid gray;
	width:145px;
}
.wpColRumbo {
	text-align: right;
	padding: 4px 4px 4px 4px;
	border:1px solid gray;
	width:50px
}
.wpColDistancia {
	text-align: right;
	padding: 4px 4px 4px 4px;
	border:1px solid gray;
	width:105px
}
.wpColSiguiente {
	text-align: center;
	padding: 4px 4px 4px 4px;
}
.wpDato {
	text-align: right;
	padding: 4px 4px 4px 4px;
	vertical-align:top;
	border:1px solid gray;
	width:120px;
}
.wpValor {
	font-size: 16px;
	font-weight:bold;
	color: black;
	padding: 4px 4px 4px 4px;
	text-align:left;
	vertical-align:top;
	border: 1px solid gray;
}
/* ToolTIp: Usado para mostrar pop ups con texto aclaratorio de naufragios y peligros.
*/
.tipW {
    position: relative;
    display: inline-block;
    cursor: pointer;
	font-size: 16px;
	font-weight: bold;
	color: navy;
}
.tipW-text {
    visibility: hidden;
    width: 300px;
    background-color: white;
    text-align: left;
	border-top: 2px solid red;
	border-left: 7px  solid red;
    padding: 6px 6px 6px 6px;
    box-shadow: 0px 0px 10px black;
	font-size: 16px;
	font-weight: normal;
	color: black;
	/* Posicionamiento */
    position: absolute;
    z-index: 1;
    top: 120%; /* debajo del texto */
     left: 50%;
     transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.tipW:hover .tipW-text {
    visibility: visible;
    opacity: 1;
}
/* ToolTIp: Usado para mostrar pop ups con texto aclaratorio de cosas que no son peligros.
*/
.tipM {
    position: relative;
    display: inline-block;
    cursor: pointer;
	font-size: 16px;
	font-weight: bold;
	color: blue;
}
.tipM-text {
    visibility: hidden;
    width: 200px;
/*	max-width: 100%; */
    background-color: white;
    text-align: left;
    border-top: 2px solid blue;
    border-left: 7px solid blue;
/*	border-right:1px solid white;		*/
/*    border-bottom:1px solid white;	*/
    padding: 6px 6px 6px 6px;
    box-shadow: 0px 0px 10px black;
	font-size: 16px;
	font-weight: normal;
	color: black;

 /* Posicionamiento */
 	  position: absolute;
    z-index: 1;
    top: 120%; /* debajo del texto */
    left: 50%;
     transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.tipM:hover .tipM-text {
    visibility: visible;
    opacity: 1;
}
/* Imagenes y Captions: Usado para ubicar imágenes en el texto y poner texto informativo en las imagenes
*/
.imgMenuInfoAdicional {
	border:1px solid gray; 
	box-shadow:-5px 5px 5px gray;
	max-width:190px;
	width: 100%;
}
.capMenuInfoAdicional {
	font-family: 'Montserrat', sans-serif;
	font-size: x-small;
	color: black;
	text-align: left;
	padding: 0px 0px 0px 0px;
	margin: -0px 0px 5px 0px;
}
@media (max-width: 768px) {
    .tipW-text,
    .tipM-text {
        position: fixed;
        left: 5vw;
        right: 5vw;
        top: auto;
        bottom: 10vh;
        width: auto;
        max-width: 80%;
        transform: none;
/*      box-sizing: border-box;	*/
        font-size: 15px;
    }
}
/*--------------------------------------------------------------------------------------------
	Definicion de la página.
	Identico para todas las páginas.
*/
.container {
	display: flex;
	justify-content: center;
}
.center {
	z-index:1;
	position:absolute;
	margin-top: -20px;
	width: 1024px;
	background-color: white;
	border: 1px solid #C0C0C0;	
}
.TituloPagina {
	position: absolute; 
	left: 118px; 
	top: 100px; 
	width: 886px; 
/*	height: 40px; 	*/
	z-index: 90010;
	background-color: white;
}
.textMain {
	position: absolute; 
	left: 118px; 
	top: 150px; 				/* Si cambio aqui, cambiar también en .menuInfoAdicional */
	width: 684px; 
	padding-top: 9px;
	z-index: 201; 
	background-color: white;
}
/*--------------------------------------------------------------------------------------------
	Clases para la linea de copyright de cada página.
*/
.copyright {
	margin: 0px 0px 0px 20px; /* separaciÃ³n del texto */
/*	border-top:1px solid blue;	*/
	font-size: 12px;
	border-top: 4px solid transparent;
	background: linear-gradient(to right, blue, blue, white, white, white) top / 100% 1px no-repeat, white;
  	background-clip: border-box;
}	
.copyrightImg {
	height: 12px;
	width: auto;
	vertical-align:bottom;
	padding: 0px 0px 0px 0px;
}

/*--------------------------------------------------------------------------------------------
	Definicion de clases para el Menu de Tolls y Links de la derecha de las páginas.
*/


.menuInfoAdicional {
	position: absolute; 
	left: 810px; 
	top: 150px; 				/* Si cambio aqui, cambiar también en .TextMain */
	width: 200px; 
	height: 350px; 
	z-index: 1301;
}
.divMenuRutas {
	position: absolute; 
	left: 810px; 
	top: 130px; 
	width: 208px; 
	height: 760px; 
	z-index: 1301;
}
.frameMenuRutas {
	width: 208px; 
	height: 760px;
	border-width: 0px; 
	padding: 0px; 
	margin: 0px 0px 0px 0px; 
	overflow: hidden;
}
/*--------------------------------------------------------------------------------------------
	Pop Up de Google Search.
*/
.toolsContainer {
	position: absolute; 
	left: 810px; 
	top: 160px; 
	width: 208px; 
    height: 650px;
	z-index: 90001;
}
.toolsSideImg {
	width: 40px;	
}
.toolsMenu {
	flex: 1;
  	flex-direction: column;
  	justify-content: space-between; /* separa arriba y abajo */
  	height: 100%; 					/* o la altura que quieras que ocupe el contenedor */
	width: 168px;	
}
.toolsFrame {
	width: 208px; 
	height: 760px;
	border-width: 0px; 
	padding: 0px; 
	margin: 0px 0px 0px 0px; 
	overflow: hidden;
}
/*-- CSS del Google Search ----------------------*/
dialog#searchDialog {
  	position: absolute;
  	width: 300px; 				/* ancho fijo */
  	border: 1px solid black;
  	border-radius: 8px;
	box-shadow:-5px 5px 5px gray;
  	padding: 5px 7px 3px 10px;
	background-color: white;
  z-index: 1000;
}
dialog::backdrop {
    background: transparent; /* sin bloque de fondo */
}
.gseTrigger {
	font-family: 'Montserrat';	
	font-size: small;
    color: blue;
    cursor: pointer;
}
.speakerTrigger {
	font-family: 'Montserrat';	
	font-size: small;
	font-weight: bold;
	color: red;
}
/*-------------------------------------------------------------------
  CSS de bloques
*/
.hangBlock {
	max-width: 670px;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: normal;
	color: black;
	text-align: left;
	/* clearfix por si hace falta */
	/*overflow: auto;*/
}
/* Clase de la imagen flotante a la derecha: el texto de TODO el hangBlock la rodea */
.hangBlock img.hangImgFloated {
	float: right;
/*	shape-outside: circle(50%);		*/
/*	clip-path: circle(50%);			*/
    shape-margin: 10px;
}
/* Item es toda la linea.<br>
   Cada ítem mantiene su propio flujo: etiqueta + contenido */
.hangItem {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: normal;
	color: black;
	overflow: visible;				/* mantiene el flujo normal para que el float de la imagen actúe */
	margin-top: 5px;
	clear: none;					/* NO limpiamos con clear; queremos que fluyan */
}
/* Etiqueta izquierda: flotada con ancho fijo */
.hangLabel {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: black;
	float: left;
	width: 65px;					/* Definir en el código */
	margin: 0px 0px 0px 10px;
	white-space: nowrap;
}
/* Contenido: se deja margen izquierdo para no sobreponerse a la etiqueta */
.hangContent {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: normal;
	color: black;
	margin: 5px 0px 0px 75px;		/* keft = hangLabel width + gap de 5px */
}
/* Texto de formulas y cuentas varias */
.planteo {
	border-collapse:collapse; 
	background-color: white;
	margin:10px 0px 10px 10px;
	font-family: 'Lucida Console';
	font-size: 16px;
}
.formula {
	border-collapse:collapse; 
	background-color:  lightcyan;
	margin:10px 0px 10px 10px;
	font-family: 'Lucida Console';
	font-size: 16px;
}
/* Clase para ordenar los links al pie depágina 
*/
.gotoBlock {
	display: flex;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}
@media (max-width: 768px) {
	.gotoBlock {
		display: block;
	}
}