body{
	background: #fff url(content-wrap.jpg) repeat-x;
    font-family: helvetica, arial, serif;
    font: 11px/1.75em Verdana, Tahoma, arial, sans-serif;
    color: #666666; 
	text-align: center;
	margin: 0 0 15px 0;	
}
 
/*********************************************************************************************************/
/* Pagina en general */
/*********************************************************************************************************/
* { margin: 0; padding: 0; outline: 0 }

a:link { text-decoration: none;
color: #0A0A0A;}
a:visited { color:darkblue }
a:hover { text-decoration: underline } 

p {	font-family:Arial, Helvetica, sans-serif }

#contenedor{
	margin: 0;
	text-align: center;
    display: flex;         /* Activa flexbox */
    align-items: flex-start; /* Alinea arriba */
    gap: 20px;             /* Espacio entre columnas */
}

#encabezado{
	width: 100%;
	margin: auto;
	text-align: center;
	position:relative;
	z-index:9999;
}

#contenido{
	width: 100%;
	height: 60%;
	margin: 0 auto 0 auto;
	text-align: center;
	position: relative;
	top: 10px;
	padding-bottom: 50px;
}

#pie{
	width: 100%;
	clear: both;
	border-top: 2px solid #000;
	background: #F0F0F0;
    position: fixed; 
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    z-index: 111111;
}

.left {
  display: flex;
  flex-direction: column; /* Logo arriba, tabla abajo */
  gap: 15px;
  align-items: center; /* centra horizontalmente */
  max-width: 400px;       /* Ancho fijo o ajustable */
}

.right {
  flex: 1;
  position: sticky;
  top: 0;     /* se “pega” arriba cuando scrolleás */
  height: 100vh; /* ocupa el alto de la ventana */
}

.logo {
  max-width: 75%;
  height: auto;
}

#map{
  width: 100%;
  height: 100%;
  object-fit: cover; /* ajusta dentro del espacio */
}

label {
	display:block;
	font-weight:bold;
	margin:5px 0;
}

h1, h2, h3 {
	font-family: 'Trebuchet MS', Tahoma, Sans-serif;
	font-weight: Bold; 	
	color: #333;		
}
h1 {
	font-size: 160%;	
	font-weight: normal;
	border-bottom: 2px solid #000;
	background: #F0F0F0;
}
h2 {
	font-size: 130%;
	text-transform: uppercase;	
}
h3 {
	font-size: 130%;	
}

h1, h2, h3, p {
	padding: 5px;		
	margin: 5px;
}

/*********************************************************************************************************/
/*Imagenes sin bordes*/
/*********************************************************************************************************/
img {
	border: 0px;
}

/*********************************************************************************************************/
/* Tablas */
/*********************************************************************************************************/
table {
	border-collapse: collapse;
	margin: 5px 5px 5px 5px;
	color:#0A0A0A;
}
th strong {
	color: #fff;
}
th {
	background: #e7e6e6 url(button.jpg) repeat-x;
	height: 29px;
	font-size: 12px;
	padding-left: 12px;
	padding-right: 12px;	
	text-align: center;
	border-left: 1px solid #f4f4f4;
	border-bottom: solid 2px #fff;
	color: #333;
}
tr {
	height: 30px;
	font-size: 11px;
	text-align: center; 
}

table tr:hover  {
	background-color: #357eb9;
	color: #fff !important;
}

td {
	padding-left: 8px;
	padding-right: 8px;
	border-left: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
td.first,th.first {
	border-left: 0px;
}

tr:nth-child(even) {background: #F8F8F8}
tr:nth-child(odd) {background: #EFEFEF}

tr.par {background: #F8F8F8}
tr.impar {background: #EFEFEF}

tr.row-a {
	background: #F8F8F8;
}
tr.row-b {
	background: #EFEFEF;		
}
