/* Estilos para contenidos a mostar en marco de escenario */

/* Estilos comunes en todas las páginas */
body {
  margin: 0px;
  font-family: georgia;
  font-size: 9pt;
  border-width: 0px;
}

/* Estilos comunes a todos los campos de entrada */
input, select {
  border: 1px solid black;
  background-color: white;
  font-family: arial;
  font-size: 9pt;
}

/* Estilos generales para campos de formulario y botones */
input[type=button] {
  border: 1px solid #4a5908;
  font-size: 8pt;
  font-family: arial;
  background-color: #7b9e08;
  color: white;
}

input[type=text], input[type=password] {
  border: 1px solid #4a5908;
  font-size: 8pt;
}

input[type=text]:focus, input[type=password]:focus {
  background-color: #4a5d00;
  color: white;
}

/* Pantallas de error en operaciones */
body.erroroperacion {
  background-color: #e7e7c6;
  padding: 0px 20px 0px 20px;
}

/* Texto (mensaje) principal del error */
body.erroroperacion h1 {
  font-size: 12pt;
  color: red;
}

/* Explicación/causa del error */
body.erroroperacion h2 {
  font-size: 12pt;
  font-weight: normal;
  font-style: italic;
}

/* Más detalles y cómo resolverlo */
body.erroroperacion p {
  font-size: 10pt;
  text-align: justify;
}

/* Botones de acciones */
body.erroroperacion p.boton {
  text-align: center;
}
