body {
	/* Cambia background-size de 100% a cover */
	background: url("images/background_max.png") no-repeat center center fixed;
	background-size: cover;
	/* Esto obliga a la imagen a llenar todo el espacio disponible sin deformarse */
	margin: 0;
	padding: 0;
	min-height: 100vh;
	/* Asegura que el cuerpo mida al menos el alto de la pantalla */
	display: flex;
	flex-direction: column;
	/* Importante para que el main y footer se alineen bien */
	align-items: center;
	justify-content: flex-start;
	/* Cambia center por flex-start para que no flote en el medio */
	font-family: "Poppins", serif !important;
}


.main-container {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 0px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	max-width: 1350px;
	width: 100%;
	display: flex;
	flex-direction: column;
}

.header,
.footer {
	background-color: #006d6d;
	color: white;
	padding: 10px 20px;

}

.footer {
	border-radius: 0 0 0px 0px;
	/* Footer: bordes redondeados inferiores */
}

.map-container {
	height: 400px;
	border: 1px solid #ddd;
	border-radius: 8px;
	overflow: hidden;
}

.accordion-button {
	background: linear-gradient(45deg, #00768e, #3f8f99);
	color: white;
}


.logo-containerd {
	/* Define un contenedor general para el logo */
	max-width: 100%;
	/* O ajusta al tamaño deseado */
	height: 100%;
	/* Ajusta según el diseño o requerimientos */
}

.center-contentd {
	display: flex;
	justify-content: center;
	/* Centrar horizontalmente */
	align-items: center;
	/* Centrar verticalmente */
	height: 100%;
	/* Asegura el centrado vertical */
	text-align: center;
	/* Fallback para navegadores antiguos */
}

.small-text {
	font-size: 10px;
	/* Ajusta según lo necesario */
}

.jjtxt {
	text-align: justify;
	line-height: 20px;
}

.pdd {
	padding-top: 10px;
}

.color_mlp {
	background: linear-gradient(45deg, #00768e, #3f8f99);
}

.accordion-button {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
	font-size: 1rem;
	/*color: var(--bs-accordion-btn-color);*/
	text-align: left;
	background-color: var(--bs-accordion-btn-bg);
	border: 0;
	border-radius: 0;
	overflow-anchor: none;
	transition: var(--bs-accordion-transition);
	border-radius: 0 0 10px 0;
	color: white;

}

.accordion-item:last-of-type .accordion-button.collapsed {
	border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
	border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
	border-radius: 0 0 10px 0;
}

.accordion-item:first-of-type .accordion-button.collapsed {
	border-top-right-radius: var(--bs-accordion-inner-border-radius);
	border-top-left-radius: var(--bs-accordion-inner-border-radius);
	border-radius: 0 0 10px 0;
}


.accordion-button:not(.collapsed) {
	color: white;
	font-weight: bold;
	background-color: var(--bs-accordion-active-bg);
	box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
	border-top-right-radius: var(--bs-accordion-inner-border-radius);
	border-top-left-radius: var(--bs-accordion-inner-border-radius);
}

.accordion {
	display: flex;
	flex-direction: column;
	gap: 10px;
	/* Espaciado entre botones */
}

.accordion-item {
	border: none;
	/* Elimina bordes predeterminados */
}

.list-group {
	--bs-list-group-color: var(--bs-body-color);
	--bs-list-group-bg: var(--bs-body-bg);
	--bs-list-group-border-color: var(--bs-border-color);
	--bs-list-group-border-width: var(--bs-border-width);
	--bs-list-group-border-radius: var(--bs-border-radius);
	--bs-list-group-item-padding-x: 1rem;
	--bs-list-group-item-padding-y: 0.5rem;
	--bs-list-group-action-color: var(--bs-secondary-color);
	--bs-list-group-action-hover-color: var(--bs-emphasis-color);
	--bs-list-group-action-hover-bg: var(--bs-tertiary-bg);
	--bs-list-group-action-active-color: var(--bs-body-color);
	--bs-list-group-action-active-bg: var(--bs-secondary-bg);
	--bs-list-group-disabled-color: var(--bs-secondary-color);
	--bs-list-group-disabled-bg: var(--bs-body-bg);
	--bs-list-group-active-color: #fff;
	--bs-list-group-active-bg: #0d6efd;
	--bs-list-group-active-border-color: #0d6efd;
	display: flex;
	flex-direction: column;
	padding-left: 0;
	margin-bottom: 0;
	border-radius: 0 !important;
}


.list-group-container {
	max-height: 200px;
	/* Ajusta la altura según necesites */
	overflow-y: auto;
	border: 1px solid #ddd;
	/* Opcional, para visualizar mejor */
	padding-right: 5px;
}

.list-group-container {
	max-width: 100%;
	max-height: 0;
	overflow-y: hidden;
	transition: max-height 0.3s ease-in-out;
}

.accordion-collapse.show .list-group-container {
	max-height: 200px;
	/* Ajusta la altura máxima según necesites */
	overflow-y: auto;
	border: none;
	/* Elimina todos los bordes */
}

.list-group-item {
	position: relative;
	display: block;
	padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
	color: var(--bs-list-group-color);
	text-decoration: none;
	background-color: #f5f5f5;
	border: none;
	/* Elimina todos los bordes */
	border-bottom: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
	/* Agrega solo el borde inferior */
}

.list-group-item:hover {
	position: relative;
	display: block;
	padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
	color: var(--bs-list-group-color);
	text-decoration: none;
	background-color: #5cc0c9 !important;
	border: none;
	/* Elimina todos los bordes */
	border-bottom: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
	/* Agrega solo el borde inferior */
}

.list-group-item:hover .icon-agua-superficial {
	filter: brightness(0) invert(1);
	/* Invierte los colores (efecto de color blanco) */
}

.list-group-item:hover .icon-agua-subterranea {
	filter: brightness(0) invert(1);
	/* Invierte los colores (efecto de color blanco) */
}

.list-group-item:hover .icon-agua-reservorio {
	filter: brightness(0) invert(1);
	/* Invierte los colores (efecto de color blanco) */
}

.logo-containerd {
	/* Define un contenedor general para el logo */
	max-width: 100%;
	/* O ajusta al tamaño deseado */
	height: 100%;
	/* Ajusta según el diseño o requerimientos */
}

.center-contentd {
	display: flex;
	justify-content: center;
	/* Centrar horizontalmente */
	align-items: center;
	/* Centrar verticalmente */
	height: 100%;
	/* Asegura el centrado vertical */
	text-align: center;
	/* Fallback para navegadores antiguos */
}

.small-text {
	font-size: 10px;
	/* Ajusta según lo necesario */
}

.jjtxt {
	text-align: justify;
	line-height: 20px;
}

.pdd {
	padding-top: 10px;
}

.color_mlp {
	background: linear-gradient(45deg, #00768e, #3f8f99);
}


.icon-agua-superficial {
	display: inline-block;
	width: 20px;
	/* Ajusta el tamaño del ícono */
	height: 20px;
	background-image: url("css/images/icons/agua-superficial-normal.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	vertical-align: middle;
	/* Alinea con el texto */
}


.icon-agua-subterranea {
	display: inline-block;
	width: 20px;
	/* Ajusta el tamaño del ícono */
	height: 20px;
	background-image: url("css/images/icons/agua-subterranea-normal.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	vertical-align: middle;
	/* Alinea con el texto */
}


.icon-agua-reservorio {
	display: inline-block;
	width: 20px;
	/* Ajusta el tamaño del ícono */
	height: 20px;
	background-image: url('css/images/icons/filtro-reservorio.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	vertical-align: middle;
	/* Alinea con el texto */
}

.items {
	color: #3d5f7b;
	font-weight: bold;
	/*border-bottom: 1px solid #d3d3d3 !important;*/
	font-size: 14px !important;
	text-decoration: none !important;

}

.title_pop {
	font-family: "Poppins", serif;
	font-weight: 700;
	font-style: normal;
	font-size: 16px;

	color: #04647c;
}

.accordion-button:not(.collapsed) {
	color: white;
	font-weight: bold;
	background-color: var(--bs-accordion-active-bg);
	box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.accordion-body {
	/* padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x); */
	padding: 0;
}


.marker-label span {
	font-size: 10px;
	color: white;
	padding: 2px 6px;
	white-space: nowrap;
	/* Evita los saltos de línea */
	text-align: center;
	/* Centra el texto */
	transform: translateX(-50%);
	/* Centra horizontalmente */
	display: inline-block;
	position: relative;
	top: 0px;
	/* Ajusta para que el texto quede justo debajo */
	font-family: "Poppins", serif;
	font-weight: bold;
	text-shadow:
		-1px -1px 0 black,
		1px -1px 0 black,
		-1px 1px 0 black,
		1px 1px 0 black;
	/* Crea un borde negro alrededor del texto */
}


.popup-content {
	font-family: 'Poppins', serif;
	font-size: 14px;
	text-align: center;
	/* Centra el texto */
}

.ver-estacion-btn {
	background-color: #00768e;
	color: white;
	border: none;
	border-radius: 4px;
	padding: 8px 12px;
	font-size: 12px;
	cursor: pointer;
	display: inline-flex;
	/* Flexbox para centrar ícono y texto */
	align-items: center;
	/* Centra verticalmente */
	justify-content: center;
	/* Centra horizontalmente */
	gap: 6px;
	/* Espacio entre el ícono y el texto */
	text-decoration: none;
	/* Quita subrayado si es un enlace */
	font-family: 'Poppins', serif;
	margin-top: 8px;
	/* Espaciado entre el texto y el botón */
}

.ver-estacion-btn:hover {
	background-color: #005f70;
	/* Color más oscuro al pasar el cursor */
}


.custom-marker {
	image-rendering: auto;
	/* Modo estándar para imágenes de buena calidad */
	will-change: transform;
	/* Optimiza el renderizado */
}

.accordion {
	--bs-accordion-color: var(--bs-body-color);
	--bs-accordion-bg: var(--bs-body-bg);
	--bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
	--bs-accordion-border-color: var(--bs-border-color);
	--bs-accordion-border-width: var(--bs-border-width);
	--bs-accordion-border-radius: var(--bs-border-radius);
	--bs-accordion-inner-border-radius: calc(var(--bs-border-radius) -(var(--bs-border-width)));
	--bs-accordion-btn-padding-x: 1.25rem;
	--bs-accordion-btn-padding-y: 1rem;
	--bs-accordion-btn-color: var(--bs-body-color);
	--bs-accordion-btn-bg: var(--bs-accordion-bg);
	--bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");

	--bs-accordion-btn-icon-width: 1.25rem;
	--bs-accordion-btn-icon-transform: rotate(-180deg);
	--bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
	--bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");

	--bs-accordion-btn-focus-border-color: #86b7fe;
	--bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
	--bs-accordion-body-padding-x: 1.25rem;
	--bs-accordion-body-padding-y: 1rem;
	--bs-accordion-active-color: var(--bs-primary-text);
	--bs-accordion-active-bg: var(--bs-primary-bg-subtle);
}


.hover-underline {
	position: relative;
	text-decoration: none;
	color: inherit;
	/* Hereda el color del texto */
}

.hover-underline::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 3px;
	/* Grosor del subrayado */
	background-color: currentColor;
	transition: width 0.3s ease;
}

.hover-underline:hover::after {
	width: 100%;
}

.notas_view {
	font-size: 13px !important;
	color: #666;
	margin-bottom: 5px;
	/* Reduce el margen inferior */
	line-height: 170%;
	font-family: "Poppins", serif;
	text-align: justify;
	padding: 20px;
	color: #949494;
}

.ultima-nota {
	margin-top: -30px;
	/* Reduce la separación */
}


.sector-btn {
	position: relative;
	display: flex;
	align-items: center;
	/* Degradado sutil para dar profundidad */
	background: linear-gradient(145deg, #2a8b98, #247a85);
	color: rgba(255, 255, 255, 0.95);
	text-decoration: none !important;
	padding: 10px 16px;
	font-size: 13.5px;
	font-weight: 500;
	letter-spacing: 0.3px;

	/* Curva elegante de gota */
	border-radius: 8px;
	border-bottom-right-radius: 32px;

	/* Borde superior muy fino para simular relieve */
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* El círculo que envuelve al icono */
.icon-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	border-radius: 6px;
	background: rgba(0, 0, 0, 0.15);
	/* Fondo oscuro suave tras el icono */
}

.sector-btn:hover {
	background: linear-gradient(145deg, #1f6b75, #2a8b98);
	transform: translateX(6px);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
	color: #ffffff;
}

/* Efecto de brillo al pasar el mouse */
.sector-btn::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(255, 255, 255, 0.05), transparent);
	pointer-events: none;
	border-radius: inherit;
}


/* Estilo base del botón (usando tu color petróleo) */
.custom-accordion .accordion-button {
	background-color: #2a8b98 !important;
	color: white !important;
	border-radius: 8px !important;
	border-bottom-right-radius: 30px !important;
	/* Tu curva de gota */
}

/* 1. Flecha hacia la DERECHA cuando está CERRADO */
.custom-accordion .accordion-button.collapsed::after {
	transform: rotate(-90deg);
	/* Rota la flecha para que apunte a la derecha */
	transition: transform 0.3s ease;
	filter: brightness(0) invert(1);
	/* Asegura que la flecha sea blanca */
}

/* 2. Flecha hacia ABAJO cuando está ABIERTO */
.custom-accordion .accordion-button:not(.collapsed)::after {
	transform: rotate(0deg);
	filter: brightness(0) invert(1);
}

/* Quitar el borde azul y el fondo claro de Bootstrap al hacer clic */
.custom-accordion .accordion-button:focus {
	box-shadow: none;
	border-color: transparent;
}

.custom-accordion .accordion-button:not(.collapsed) {
	background-color: #1f6b75 !important;
	/* Tono más oscuro al abrirse */
	box-shadow: none;
}

.accordion-button.collapsed::after {
	transform: rotate(-90deg);
	/* Rota el icono 90 grados hacia la derecha */
	transition: transform 0.3s ease;
	/* Movimiento suave */
}

/* 2. Flecha hacia ABAJO cuando el acordeón se ABRE */
.accordion-button:not(.collapsed)::after {
	transform: rotate(0deg);
	/* Vuelve a su posición original (hacia abajo) */
}

/* Opcional: Si quieres que la flecha sea blanca para que combine con tu botón azul */
.accordion-button::after {
	filter: brightness(0) invert(1);
}

.pop_text {
	font-family: 'Roboto', sans-serif;
	font-size: x-small;
}

.pop_title {
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
}

.yborder {
	border: 4px solid white;
}

.leaflet-popup .leaflet-popup-content-wrapper {
	border-radius: 6px !important;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: #fff;
	box-shadow: 0 3px 14px rgb(0 0 0 / 40%);
}

.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
}

.leaflet-popup .leaflet-popup-content-wrapper .header-popup {
	background-color: #5B90BF;
	color: #fff;
	padding: 10px;
	border-radius: 6px 6px 0 0;
	margin: -1px -1px 0 -1px;
	height: 42px;
}

.leaflet-popup .leaflet-popup-content-wrapper .leaflet-popup-content .cont-1 p {
	margin: 5px 0;
	font-size: 12px;
}

.another-popup .leaflet-popup-content-wrapper {
	background: whitesmoke;
	color: black;
	font-size: 12px;
	line-height: 24px;
	border-radius: 0px;
}

.another-popup .leaflet-popup-content-wrapper a {
	color: rgba(200, 200, 200, 0.1);
}

.another-popup .leaflet-popup-tip-container {
	width: 50px;
	height: 15px;
}

.another-popup .leaflet-popup-tip {
	background: transparent;
}

.nav-item:hover {
	/*  background-color: red !important;*/
	font-size: 14px;
}

.super {
	background-color: #a4b1b3 !important;
	color: white !important;
	font-weight: bold !important;
}

.super8:hover {
	background-color: #1f9093 !important;
	color: white !important;
	font-weight: bold !important;
}

.card:hover {
	transform: scale(1);
	box-shadow: 0 10px 20px rgba(0, 0, 0, .12), 0 4px 8px rgba(0, 0, 0, .06);
}

.csb {
	/*background-color: #4CAF50;*/
	/* border: 5px;*/
	background-color: transparent;
	border: 2px solid #00727c;
	/* Green */
	color: #00727c;
	padding-top: 6px;
	padding-bottom: 6px;
	padding-left: 15px;
	padding-right: 15px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 11.5px;
	border-radius: 18px;
	font-weight: bold;
}

.csb:hover {
	background-color: #00727c !important;
	color: white !important;
}

.csb1 {
	/*background-color: #4CAF50;*/
	/* border: 5px;*/
	background-color: transparent;
	border: 2px solid #00727c;
	/* Green */
	color: #00727c;
	padding-top: 6px;
	padding-bottom: 6px;
	padding-left: 15px;
	padding-right: 15px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 12px;
	border-radius: 18px;
	font-weight: bold;
}

.csb1:hover {
	background-color: #00727c !important;
	color: white !important;
}

.csbpurple {
	/*background-color: #4CAF50;*/
	/* border: 5px;*/
	background-color: transparent;
	border: 2px solid #66023C;
	/* Green */
	color: #66023C;
	padding-top: 6px;
	padding-bottom: 6px;
	padding-left: 15px;
	padding-right: 15px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 12px;
	border-radius: 18px;
	font-weight: bold;
}

.csbpurple:hover {
	background-color: #66023C !important;
	color: white !important;
}

.csborange {
	/*background-color: #4CAF50;*/
	/* border: 5px;*/
	background-color: transparent;
	border: 2px solid #f77f00;
	/* Green */
	color: #f77f00;
	padding-top: 6px;
	padding-bottom: 6px;
	padding-left: 15px;
	padding-right: 15px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 12px;
	border-radius: 18px;
	font-weight: bold;
}

.csborange:hover {
	background-color: #f77f00 !important;
	color: white !important;
}

.csbyellow {
	background-color: transparent;
	border: 2px solid #e2d709;
	color: #e2d709;
	padding-top: 6px;
	padding-bottom: 6px;
	padding-left: 15px;
	padding-right: 15px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 12px;
	border-radius: 18px;
	font-weight: bold;
}

.csbyellow:hover {
	background-color: #e2d709 !important;
	color: white !important;
}

.csbyellowblue {
	background-color: transparent;
	border: 2px solid #e2d709;
	color: #e2d709;
	padding-top: 6px;
	padding-bottom: 6px;
	padding-left: 15px;
	padding-right: 15px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 12px;
	border-radius: 18px;
	font-weight: bold;
}

.csbyellowblue :hover {
	background-color: #e2d709 !important;
	color: white !important;
}

.super_red:hover {
	background-color: rgb(201, 0, 0, 0.3);
	color: #c60000 !important;
}

.super_green:hover {
	background-color: rgb(0, 193, 0, 0.3);
	color: green !important;
}

.super_orange:hover {
	background-color: rgb(255, 128, 0, 0.3);
	color: orange !important;
}

.super_blue:hover {
	background-color: rgb(18, 38, 63, 0.3);
	color: #12263f !important;
}

.super_orange2:hover {
	background-color: rgb(244, 139, 41, 0.3);
	color: #f48b29 !important;
}

.super_purple:hover {
	background-color: rgb(198, 0, 198, 0.3);
	color: #c600c6 !important;
}

.super_sky:hover {
	background-color: rgb(44, 123, 129, 0.3);
	color: #2C7BE5 !important;
	font-weight: bold;
}

.super_maroon:hover {
	background-color: rgb(128, 0, 0, 0.3);
	color: #800000 !important;
	font-weight: bold;
}

.labelClassmp {
	position: absolute;
	text-align: center;
	white-space: nowrap;
	font-size: 9.5px;
	/* color: #f55345;*/
	color: white;
	padding-top: 5px;
	/*  font-family: Nunito, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
         */
	/* font-family: 'Poppins', sans-serif;*/
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
	transform-origin: 0 0;
	transform: rotate(90deg);
	/* text-shadow: 2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff, 1px 1px #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
         /*text-shadow: 2px 0 0 #000, -2px 0 0 #000, 0 2px 0 #000, 0 -2px 0 #000, 1px 1px #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000; */
}

.labelClass_red {
	position: absolute;
	text-align: center;
	/* white-space: nowrap;*/
	font-size: 10.5px;
	color: #f55345;
	padding-top: 5px;
	font-family: 'Roboto', sans-serif;
	/* font-family: Nunito, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
         */
	font-weight: bold;
	text-shadow: 2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff, 1px 1px #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
	/*text-shadow: 2px 0 0 #000, -2px 0 0 #000, 0 2px 0 #000, 0 -2px 0 #000, 1px 1px #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000; */
}

.labelClass_red1 {
	position: absolute;
	text-align: center;
	white-space: nowrap;
	font-size: 9px;
	color: #f55345;
	padding-top: 5px;
	font-family: 'Roboto', sans-serif;
	/* font-family: Nunito, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
         */
	font-weight: bold;
	text-shadow: 2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff, 1px 1px #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
	/*text-shadow: 2px 0 0 #000, -2px 0 0 #000, 0 2px 0 #000, 0 -2px 0 #000, 1px 1px #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000; */
}

.labelClass_light {
	position: absolute;
	text-align: center;
	white-space: nowrap;
	font-size: 10.5px;
	color: #55bbe4;
	padding-top: 5px;
	/*font-family: Nunito, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
         */
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
	/*text-shadow: 2px 0 0 #000, -2px 0 0 #000, 0 2px 0 #000, 0 -2px 0 #000, 1px 1px #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;*/
	text-shadow: 2px 0 0 #000, -2px 0 0 #000, 0 2px 0 #000, 0 -2px 0 #000, 1px 1px #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
}

.labelClass_orange {
	position: absolute;
	text-align: center;
	white-space: nowrap;
	font-size: 10.5px;
	color: orange;
	font-family: 'Roboto', sans-serif;
	padding-top: 5px;
	/*
         font-family: Nunito, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
         */
	font-weight: bold;
	/*xt-shadow: 2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff, 1px 1px #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;*/
	text-shadow: 2px 0 0 #000, -2px 0 0 #000, 0 2px 0 #000, 0 -2px 0 #000, 1px 1px #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
}

.labelClass_green {
	position: absolute;
	text-align: center;
	white-space: nowrap;
	font-size: 10.5px;
	color: green;
	padding-top: 5px;
	font-family: 'Roboto', sans-serif;
	/* font-family: Nunito, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
         */
	font-weight: bold;
	text-shadow: 2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff, 1px 1px #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
	/*text-shadow: 2px 0 0 #000, -2px 0 0 #000, 0 2px 0 #000, 0 -2px 0 #000, 1px 1px #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;*/
}

.labelClass_purple {
	position: absolute;
	text-align: center;
	white-space: nowrap;
	font-size: 10.5px;
	color: purple;
	padding-top: 5px;
	font-family: 'Roboto', sans-serif;
	/* font-family: Nunito, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
         */
	font-weight: bold;
	text-shadow: 2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff, 1px 1px #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
}

.labelClass_yellow {
	position: absolute;
	text-align: center;
	white-space: nowrap;
	font-size: 10.5px;
	color: yellow;
	padding-top: 5px;
	font-family: 'Roboto', sans-serif;
	/*font-family: Nunito, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
         */
	font-weight: bold;
	/* text-shadow: 2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff, 1px 1px #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;*/
	text-shadow: 2px 0 0 #000, -2px 0 0 #000, 0 2px 0 #000, 0 -2px 0 #000, 1px 1px #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
}

.labelClass_blue {
  position: absolute;
  text-align: center;
  white-space: nowrap;
  font-size: 10px;
  font-style: italic;
  color: white; /* Amarillo puro */
  padding-top: 5px;
  font-family: 'Poppins', sans-serif;
  font-weight: 300; /* Un poco más de grosor ayuda a que el borde se note mejor */
  
  /* Borde negro leve (efecto de contorno) */
  text-shadow: 
    -1px -1px 0 #000,  
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}

.labelClass_maroon {
	position: absolute;
	text-align: center;
	white-space: nowrap;
	font-size: 10.5px;
	color: #800000;
	padding-top: 5px;
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
	text-shadow: 2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff, 1px 1px #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
}
 .tope {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    height: 45px;
    line-height: 50px;
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    border-bottom-left-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
    
}/* required styles */

.leaflet-map-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-pane,
.leaflet-tile-container,
.leaflet-overlay-pane,
.leaflet-shadow-pane,
.leaflet-marker-pane,
.leaflet-popup-pane,
.leaflet-overlay-pane svg,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	-ms-touch-action: none;
	touch-action: none;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	-webkit-user-drag: none;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container img {
	max-width: none !important;
	}
/* stupid Android 2 doesn't understand "max-width: none" properly */
.leaflet-container img.leaflet-image-layer {
	max-width: 15000px !important;
	}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-tile-pane    { z-index: 2; }
.leaflet-objects-pane { z-index: 3; }
.leaflet-overlay-pane { z-index: 4; }
.leaflet-shadow-pane  { z-index: 5; }
.leaflet-marker-pane  { z-index: 6; }
.leaflet-popup-pane   { z-index: 7; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(map/leaflet.css#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 7;
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-tile,
.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	     -o-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-tile-loaded,
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}

.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	     -o-transition:      -o-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile,
.leaflet-touching .leaflet-zoom-animated {
	-webkit-transition: none;
	   -moz-transition: none;
	     -o-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-clickable {
	cursor: pointer;
	}
.leaflet-container {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-container,
.leaflet-dragging .leaflet-clickable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	}


/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline: 0;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-container a.leaflet-active {
	outline: 2px solid orange;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a,
.leaflet-bar a:hover {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}


/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}
.leaflet-control-zoom-out {
	font-size: 20px;
	}

.leaflet-touch .leaflet-control-zoom-in {
	font-size: 22px;
	}
.leaflet-touch .leaflet-control-zoom-out {
	font-size: 24px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(map/images/layers.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(map/images/layers-2x.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.7);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover {
	text-decoration: underline;
	}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
	font-size: 11px;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	font-size: 11px;
	white-space: nowrap;
	overflow: hidden;
	-moz-box-sizing: content-box;
	     box-sizing: content-box;

	background: #fff;
	background: rgba(255, 255, 255, 0.5);
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 19px;
	line-height: 1.4;
	}
.leaflet-popup-content p {
	margin: 18px 0;
	}
.leaflet-popup-tip-container {
	margin: 0 auto;
	width: 40px;
	height: 20px;
	position: relative;
	overflow: hidden;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	     -o-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;

	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	padding: 4px 4px 0 0;
	text-align: center;
	width: 18px;
	height: 14px;
	font: 16px/14px Tahoma, Verdana, sans-serif;
	color: #c3c3c3;
	text-decoration: none;
	font-weight: bold;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover {
	color: #999;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}
.leaflet-oldie .leaflet-popup-tip-container {
	margin-top: -1px;
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}
.leaflet-label {
	background: rgb(235, 235, 235);
	background: rgba(235, 235, 235, 0.81);
	background-clip: padding-box;
	border-color: #777;
	border-color: rgba(0,0,0,0.25);
	border-radius: 4px;
	border-style: solid;
	border-width: 4px;
	color: #111;
	display: block; 
	font: 12px/20px 'Nunito', sans-serif;
	font-weight: bold;
	padding: 1px 6px;
	position: absolute;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	pointer-events: none;
	white-space: nowrap;
	z-index: 6;
}

.leaflet-label.leaflet-clickable {
	cursor: pointer;
}

.leaflet-label:before,
.leaflet-label:after {
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	content: none;
	position: absolute;
	top: 5px;
}

.leaflet-label:before {
	border-right: 6px solid black;
	border-right-color: inherit;
	left: -10px;
}

.leaflet-label:after {
	border-left: 6px solid black;
	border-left-color: inherit;
	right: -10px;
}

.leaflet-label-right:before,
.leaflet-label-left:after {
	content: "";
}.leaflet-zoom-box-control {
    font-size: 18px;
}
.leaflet-zoom-box-crosshair {
    cursor: crosshair !important;
}
.leaflet-zoom-box-icon {
    background: transparent no-repeat center center;
    /*src: https://design.google.com/icons/#ic_crop_free*/
    background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjMDAwMDAwIiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPiAgICA8cGF0aCBkPSJNMyA1djRoMlY1aDRWM0g1Yy0xLjEgMC0yIC45LTIgMnptMiAxMEgzdjRjMCAxLjEuOSAyIDIgMmg0di0ySDV2LTR6bTE0IDRoLTR2Mmg0YzEuMSAwIDItLjkgMi0ydi00aC0ydjR6bTAtMTZoLTR2Mmg0djRoMlY1YzAtMS4xLS45LTItMi0yeiIvPjwvc3ZnPg==);
}
.leaflet-zoom-box-icon.active {
    color: #FFF;
    background-color: #CCC;
    /*src: https://design.google.com/icons/#ic_center_focus_strong*/
    background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjMDAwMDAwIiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPiAgICA8cGF0aCBkPSJNMTIgOGMtMi4yMSAwLTQgMS43OS00IDRzMS43OSA0IDQgNCA0LTEuNzkgNC00LTEuNzktNC00LTR6bS03IDdIM3Y0YzAgMS4xLjkgMiAyIDJoNHYtMkg1di00ek01IDVoNFYzSDVjLTEuMSAwLTIgLjktMiAydjRoMlY1em0xNC0yaC00djJoNHY0aDJWNWMwLTEuMS0uOS0yLTItMnptMCAxNmgtNHYyaDRjMS4xIDAgMi0uOSAyLTJ2LTRoLTJ2NHoiLz48L3N2Zz4=);
}
.leaflet-zoom-box-icon.leaflet-disabled{
    background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjQkJCQkJCIiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPiAgICA8cGF0aCBkPSJNMyA1djRoMlY1aDRWM0g1Yy0xLjEgMC0yIC45LTIgMnptMiAxMEgzdjRjMCAxLjEuOSAyIDIgMmg0di0ySDV2LTR6bTE0IDRoLTR2Mmg0YzEuMSAwIDItLjkgMi0ydi00aC0ydjR6bTAtMTZoLTR2Mmg0djRoMlY1YzAtMS4xLS45LTItMi0yeiIvPjwvc3ZnPg==);
}