*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	font-family: "Open Sans", Arial, Sans-serif;
	font-size: 16px;
}
/********** NAVBAR ADAPTABLE A DISPOSITIVOS MOVILES ****************/
.fixed-top {
  max-height: 100vh;
  overflow: auto;
}


/*SCROLL DE NAVBAR AÑADIDO POR ALBERTO CRUZ
EL 1 DE SEPTIEMBRE DE 2021
 ****************/
 .DivWithScroll{
    height:65vh;
	width:200px;
    overflow:hidden;
	overflow-y:scroll;
	overflow-x: hidden;
	direction:rtl;
	background-color: #F5F5F5;
    border: 1px solid #DDDDDD;
	font-weight: bold;
	border:1px solid rgba(136, 90, 90, 0.25);
	font-size: 12px;


}
/* estilos webkit solo mejoran apariencia de scroll, aunque mejora no 
se ve en  mozilla porque no es compatible*/
/* width */
::-webkit-scrollbar {
	width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
	background: #f1f1f1;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
	background: #888;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
	background: #555;
  }
/*El tamaño maximo donde se aplicara esta clase
es de 768px. Es decir, para esconcer el navbar de las
PC -- Alberto Cruz*/
@media (max-width: 768px){
	.hide_desk_nav{
		display: none;
	}
	
}
	
.container{
	text-align: justify;
}	

/************** HEADER ****************/
.header img{
	/*background:#1E296D;*/
	max-width: 100%;
	margin-top: 50px;
}

.header hr {
  height: 2px;
  background-color: black;
}


/****** BARRA LATERAL*****/
.aside{

	position: fixed;
	font-size: 14px;
}
.aside li{
	text-align: center;
}
.aside li .active{
	
	color: #fff;
	background: #1E296D;
}
.aside h1{
	font-weight: 300;
}
.aside a{

	color: #000;
}
.aside a:hover{
	color: red;
}

/******* MAIN ******/

.main{
	margin: 50px 0;
	text-align: center;
	color: #1E296D;
}

/******* SECTION ******/

.section h4{
	color: #1E296D;
	margin: 40px 0px;
}

.section .caja{
	margin-bottom: 50px;
}

.section h5{
	font-weight: 700;
	margin-bottom: 20px;
}

/******* FOOTER ******/

.footer{
	margin: 20px 0;
}

.footer hr{
	border: 1px solid black;
}

.footer img{
	max-width: 50%;
}

.footer{
	font-size: 13px;
}

.footer .texto{
	margin-top: 20px;
	text-align: center;
}


/********* MEDIAQUERIES *******/
@media screen and (max-width:600px)
{
	/* NAVBAR */
	.linea .container a{
		font-size: 15px;
	}
	.linea .container .collapse a{
	font-size: 15px;
	padding: 5px 0px;
	}
	/******* HEADER ******/
	.header{
		margin-top: 50px;
	}
	/******** FOOTER *****/
	.footer p{
		font-size: 15px;
	}
}

@media screen and (max-width:800px)
{
	/******** HEADER *****/
	.header{
		margin-top: 60px;
	}

	/******** SECTION *****/
	.section{
		padding: 20px;
	}
}