/*=== así se comentan líneas en archivoc CSS ===*/

h1 {
/*	color: blue;*/
	color: green;
	font-family:arial;
	text-align: center;
	}

h2 {
/*	color: blue;*/
	color: green;
	font-family:arial;
	text-align: center;
	}

h4 {
/*	color: blue;*/
	color: green;
	font-family:arial;
	text-align: center;
	}

h5 {
/*	color: blue;*/
/*	color: green;*/
	color: #101010;
	font-family:arial;
	font-size: 10pt;
	font-weight: normal;
	text-align: left;
	margin-left: 12%;
	margin-right: 12%;
	border-top: 1px solid rgb(200, 200, 200);
	border-bottom: 1px solid rgb(200, 200, 200);
	}

body {background-color: RGB(238, 245, 235, 0.45)}

.button {
/*	transition-duration: 0.4s; //no usar: desplaza todos los botones y retorna en tiempo=duration
   background-color: #4CAF50;
   background-color: blue;
   background-color: rgba(0,120,255,1);
*/
  background-color: green;
/*  border: none; */
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  margin: 8px 2px;
  padding: 5px 15px;
  text-align: center;
  text-decoration: none;
/*  margin-left: 5%; */
}

.button:hover {
	background-color: #4CAF50;
	color: white;  /*texto */
/*	color: black;  */
}


.textbox  {
  background: #FFFFFF;
  border: 1px solid green;
  border-radius: 6px;
  color: black; 
  cursor: pointer;
  font-family: Arial, Verdana;
  padding: 5px 9px;       /* pad: arriba=abajo   pad: izq=der */
  font-size: 15px;
  width: 110px;
/*  background: linear-gradient(left, #FFFFFF, #F7F9FA); */
/*  background: -moz-linear-gradient(left, #FFFFFF, #F7F9FA);
  background: -webkit-linear-gradient(left, #FFFFFF, #F7F9FA);
  background: -o-linear-gradient(left, #FFFFFF, #F7F9FA); */
  /*-moz-border-radius: 4px;      //obsoleto
    -webkit-border-radius: 6px;   //obsoleto chrome
     -o-border-radius: 4px;		  //obsoleto	*/
/*  color: #2E3133;  */
  }
  
.textbox:focus  {		  /* recuadro negro al recibir foco */
  border-color: #FBFFAD;
  color: #2E3133;
  cursor: pointer;
  }


table {
	border: 1px solid black;
	border-collapse: collapse;
/*	border-spacing: 14; */
	color: black;        /* texto de las celdas */
	font-family: monospace;
	font-size: 14px;
	/* font-weight: bold; */
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	width: 90%;
}

th, td {
  padding: 8px 5px;
  text-align: left;
       }

	   
th {           /* FILA de ENCABEZAMIENTO*/
/*	background-color: #588c7e; */
/*	background-color: blue;  */
/*	background-color: #4CAF50; */
/*	background-color: #6179c2; */
	background-color: green;   
	color: white;   		  
/*	padding: 8px;  */
	}	

tr:nth-child(odd) {background-color: #eaeaea}
tr:nth-child(even) {background-color: white}


table2 {
	border:1px solid black;
	border-collapse: collapse;
/*	border-spacing: 14; */
	color: black;        /* texto de las celdas */
/*  color: #588c7e; */
/*	color: #000000; */
	font-family: monospace;
	font-size: 14px;
	margin-left:auto;
	margin-right:auto;
	text-align: left;
	width: 65%; 
}

th2, td2 {
  padding: 8px 5px;
  text-align: left;
       }
th2 {           /* FILA de ENCABEZAMIENTO*/
/*	background-color: #588c7e; */
/*	background-color: blue;  */
/*	background-color: #4CAF50; */
/*	background-color: #6179c2; */
	background-color: green;   
	color: white;   		  
/*  color: solid black; */
/*	padding: 8px;  */
	}	

tr2:nth-child(odd) {background-color: #eaeaea}

