*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

html{
	width: 100%;
	font-family: 'Roboto', sans-serif;
}

body{
	width: 100%;
	height: 100%;
}

header{
	width: 100%;
	text-align: center;
}
	
	header img{
		width: 100%;
		margin-bottom: -4px;
	}

footer{
	width: 100%;
	display: flex;
	flex-basis: 1em;
	font-size: .75em;
	min-height: 1.5em;
	align-items: center;
	font-weight: lighter;
	justify-content: center;
}

object{
	width: 100%;
	height: 100%;
}

input:not([type="radio"]), select{
	width: 100%;
	height: 2em;
	border: none;
	font-size: 1em;
	color: #3A5684;
	border-bottom: 1px solid #ECEAE7;
}

input[type="checkbox"]{
	width: auto;
}

	input:hover, select:hover{
		background-color: #ECEAE7;
	}

.btnAccion{
	color:white;
	height: 2em;
	width: 10em;
	border: none;
	font-size: 1em;
	cursor: pointer;
	border-radius: 3px;
	background-color: rgb(58,86,132);
}

	.btnAccion:hover{
		background-color: #596B89;
	}

.centrado{
	display: flex;
	align-items: center;
	justify-content: center;
}

.oculto{
	display: none;
}

fieldset{
	border:none;
	padding-top: .75em;
}

	legend{
		font-size: 1.4em;
		font-weight: bold;
	}

	fieldset .subconjunto{
		padding: 0px;
		margin: 1.2em 2em;
		border-radius: 5px;
		border: solid rgb(236,234,231) 1px;
	}

		.subconjunto legend{
			color: black;
			font-size: 1em;
			font-weight: bold;
			margin-left: .5em;
			margin-bottom: .75em;
		}

.fixedH1 {
	top:0;
	width: 100%;
	position:fixed;
}

.relativeH1{
	width: 100%;
	position: relative;
}

.fixedNav {
	top:38px;
	position:fixed;
}

.pBoton{ /* Un párrafo con botones */
	margin-top: 1em;
	text-align: center;
}

.lateral{ /* Espacios laterales */
	width: 25%;
	background-color: #ECEAE7;
}

.fazul{ /* Fondo azul */
	color: white;
	background-color: #3A5684;
}

.margens{ /* Margen superior */
	margin-top: 1.2em;
}

.margenb{ /* Margen inferior */
	margin-bottom: 1.2em;
}

.margeni{ /* Margen izquierdo */
	margin-left: 1.2em;
}

.margend{ /* Margen derecho */
	margin-right: 1.2em;
}

.margenl{ /* Margenes laterales */
	margin-right: 1.2em;
	margin-left: 1.2em;
}

.margenl-tabulado{
	margin-right: 1.2em;
	margin-left: 2.2em;
}

.margensi{ /* Márgenes superior e inferior */
	margin-top: 1.2em;
	margin-bottom: 1.2em;
}

.bordeg{ /* borde general */
	border: solid #ECEAE7 1px;
	border-radius: 5px;
}

.bordeb{ /* Borde inferior */
	border-bottom: 1px solid #ECEAE7;
}

.colort{ /* Color del texto */
	color: #3A5684;
}

.colorn{ /* Color naranja */
	color: #E17A00;
}