﻿@charset "utf-8";
/* Documento CSS */

* {
  padding: 0;
  margin: 0;
}

body {
  width: 99%;
  margin: auto;
  min-width: 600px;
  max-width: 2500px;
}

#general {
  width: 100%;
  background-color: #ffffff;
}

/*__________Cabeza de página_______________*/
#cab {
  width: 100%;
  height: 130px;
  text-align: center; /* Corregido de align a text-align */
  border-color: #fff;
  border-style: double;
}

#cab2 {
  width: 100%;
  height: 75px;
  border-color: #e8181b;
  border-style: double;
  text-align: center;
}

#esp {
  height: 30px;
  width: 100%;
}

.etiqueta p {
  font-size: 16px; /* Cambiado de size a font-size y se estableció un valor razonable */
}

/* ____________Estilos para el menú _____________*/
.men {
  width: 100%;
  background-color: #000;
  position: relative;
  z-index: 2;
  height: 40px;
}

/* Agrupación de estilos similares bajo una sola regla para evitar redundancias */
#menu,
#menu1,
#menu2,
#menu3 {
  margin: auto;
  font-family: Helvetica, Arial, sans-serif;
}

#menu {
  margin-left: 30%;
}

#menu1 {
  width: 50%;
}

#menu2 {
  margin-right: 20%;
  margin-left: 20%;
}

#menu3 {
  width: 100%;
  margin-right: 10%;
  margin-left: 8%;
}

/*______________Menú Horizontal__________________*/
ul,
ol {
  list-style: none;
}

.hmenu > li {
  float: left;
}

.hmenu li a {
  background-color: #000;
  color: #fff;
  text-decoration: none;
  padding: 10px;
  display: block;
}

.hmenu li a:hover {
  background-color: #0c0;
}

.hmenu li ul {
  display: none;
  position: absolute;
  min-width: 150px;
}

.hmenu li:hover > ul {
  display: block;
}

.hmenu li ul li {
  position: relative;
}

.hmenu li ul li ul {
  right: 2px;
  top: 2px;
}

/*_______________Menú Vertical__________________*/
#menux {
  padding: 0;
  margin: 0;
  border: 0;
  text-align: left;
  width: 200px;
}

#menux ul {
  position: relative;
  z-index: 597;
  float: left;
}

#menux ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

#menux ul li {
  float: left;
  min-height: 1px;
  line-height: 1em;
  vertical-align: middle;
}

#menux ul li.hover,
#menux ul li:hover {
  position: relative;
  z-index: 599;
  cursor: default;
}

#menux ul ul {
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 598;
  width: 100%;
}

#menux ul ul li {
  float: none;
}

#menux ul li:hover > ul {
  visibility: visible;
}

#menux ul ul {
  top: 0;
  left: 100%;
}

#menux ul li {
  float: none;
}

#menux span,
#menux a {
  display: inline-block;
  font-family: Helvetica, Arial, sans-serif;
  text-decoration: none;
}

#menux:after,
#menux ul:after {
  content: "";
  display: block;
  clear: both;
}

#menux ul,
#menux li {
  width: 100%;
}

#menux li {
  background: #000;
}

#menux li:hover {
  background: #0c0;
}

#menux a {
  color: #fff;
  line-height: 160%;
  padding: 11px 28px;
  width: 144px;
}

#menux ul ul li {
  background: #000;
}

#menux ul ul li:hover {
  background: #00c;
}

#menux ul ul li:hover a {
  color: #fff;
}

#menux ul ul li ul li {
  background: #000;
}

#menux ul ul li ul li:hover {
  background: #00f;
}

/*______________Pie de página____________________*/
#pie {
  background-color: #ccc;
  height: 120px;
  width: 100%;
  text-align: center;
}

/* _____________________________ Textbox _______________________________ */
.textbox {
  border: 2px solid #dbe1eb;
  font-size: 14px;
  font-weight: bold;
  font-family: Arial, Verdana;
  padding: 8px 6px;
  border-radius: 3px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(246, 246, 246, 1) 47%,
    rgba(237, 237, 237, 1) 100%
  );
  color: #000;
}

.textbox:focus {
  color: #2e3133;
  border-color: #fbffad;
}

.Boton {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  border-radius: 6px;
  text-decoration: none; /* Corregido de black a none */
  height: 30px;
  background-color: cyan;
  font-weight: bold;
}

.boton_new {
  font-size: 10px;
  font-family: Verdana, Helvetica;
  font-weight: bold;
  color: white;
  background: #638cb5;
  border: 0;
  width: 80px;
  height: 19px;
}
