﻿
*{
	margin: 0;
	padding: 0;
}



.cnt_img img
{
	margin:0 auto;
	display:block;
}
.clear
{
	clear:both;
}




@font-face {
	font-family: 'AccordAlt-Light';
	src: url('../font/AccordAlt-Light.eot?') format('eot'), 
	     url('../font/AccordAlt-Light.otf')  format('opentype'),
	     url('../font/AccordAlt-Light.woff') format('woff'), 
	     url('../font/AccordAlt-Light.ttf')  format('truetype'),
	     url('../font/AccordAlt-Light.svg#AccordAlt-Light') format('svg');
}



@font-face {
	font-family: 'AccordAlt-Regular';
	src: url('../font/AccordAlt-Regular.eot?') format('eot'), 
	     url('../font/AccordAlt-Regular.otf')  format('opentype'),
	     url('../font/AccordAlt-Regular.woff') format('woff'), 
	     url('../font/AccordAlt-Regular.ttf')  format('truetype'),
	     url('../font/AccordAlt-Regular.svg#AccordAlt-Regular') format('svg');
}


@font-face {
	font-family: 'AccordAlt-Bold';
	src: url('../font/AccordAlt-Bold.eot?') format('eot'), 
	     url('../font/AccordAlt-Bold.otf')  format('opentype'),
	     url('../font/AccordAlt-Bold.woff') format('woff'), 
	     url('../font/AccordAlt-Bold.ttf')  format('truetype'),
	     url('../font/AccordAlt-Bold.svg#AccordAlt-Bold') format('svg');
}

p{
	margin-bottom: 1em;
}

html{
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

body{
	width: 100%;
	height: 100%;
}


header {
	width:100%; /* Establecemos que el header abarque el 100% del documento */
	overflow:hidden; /* Eliminamos errores de float */
	background:rgba(255,255,255,255 .00);
	margin-bottom:20px;
	height:80px;
	position: absolute;
}

.wrapper {
	width:90%; /* Establecemos que el ancho sera del 90% */
	max-width:1000px; /* Aqui le decimos que el ancho mÃ¡ximo sera de 1000px */
	margin:auto; /* Centramos los elementos */
	overflow:hidden; /* Eliminamos errores de float */
}



header .logo {
	display: block;
	width: 1px;
	opacity: 1;
	float:left;
	
}



header nav {
	text-align: center;
}

header nav a {
	display:inline-block;
	color:#fff;
	text-decoration:none;
	padding:5px 30px;
	font-size:0.9em;
	-webkit-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	transition:all 500ms ease;
	font-family: 'Open Sans', sans-serif;
	border: 1px solid #FFFFFF;
	min-width: 100px;
	margin: 10px;
	-webkit-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
}

header nav a:hover {
	background:rgba(3,10,3,0.5);

}

.header2 {
	position: fixed;
	height:70px;
	background: rgba(255,255,255,1.00);
	padding-left: 20px;
	padding-right: 20px;
	box-sizing: border-box;
	-webkit-box-shadow: 0 1px 2px 2px #919191;
box-shadow: 0 1px 2px 2px #919191;
}

.header2 .logo {
	display: block;
	width: 350px;
	margin-right: 120px;
	margin-top: 10px;
}

.header2 nav {
	float: right;
	margin-top: 10px;
	font-size: 0.9em;
	min-width: 30px;
}


.header2 nav a {
	color: rgba(49,49,49,1.00);
	padding:5px 5px;
}



.header2 nav a:hover {
	color:#377023;
	background: none;
}


header, header nav, header nav .logo{
-webkit-transition:all 500ms ease;
-moz-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
transition:all 500ms ease;
}




#home{
	background:url(../img/fondo-home.jpg) no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	width:100%;
	height:100%;
	margin:0 auto;
	text-align: center;
	box-sizing: border-box;
	vertical-align: middle;
	display: table;

}



.contenido-central{
	display: table-cell;
	width:100%;
	height: 100%;
	margin: 0 auto;
	vertical-align: middle;
	font-family: 'AccordAlt-Regular';
	box-sizing: border-box;

}

.contenedor-interno{
	display: block;
	width: 700px;
	margin: 0 auto;
	text-shadow: 1px 1px 2px #000000;
	color: #FFFFFF;
	font-size: 1.1em;

}

.logo-up{
	display: block;
	width: 350px;
	margin: 0 auto;
}


.titular1{
	display: block;
	width: 700px;
	margin: 0 auto;
	margin-bottom: 10px
}


#btn-descarga{
	display: block;
	position: absolute;
	width:400px;
	bottom: 0;
	right: 0;
	overflow: hidden;
	margin-bottom: -5px;
	position: fixed;
}

#btn-abajo{
	width: 50px;
	margin: 0 auto;
	position: absolute;
	cursor: pointer;
	-webkit-animation: jumpInc 2s infinite;
    -moz-animation: jumpInc 2s infinite;
    -o-animation: jumpInc 2s infinite;
    animation: jumpInc 2s infinite;
	margin-left: 350px;
}


#ensenanzas{
	display: none;
}





#alianzas{
	display: block;
	background: #FFFFFF;
	width: 100%;
	padding-top: 100px;
	color: #2B2B2B;
	font-size: 3em;
	font-family: 'AccordAlt-Regular';
	width: 100%;
	min-height: 100%;
}



@-webkit-keyframes jumpInc {
	0%   {
		margin-top: 0;
		opacity: 0.5;
	}
	
	50%  {
		margin-top: 30px;
		opacity: 1;
	}
	
	100% {
		margin-top:0.5;
		opacity: 0.5;
	}
}

@-moz-keyframes jumpInc {
	0%   {
		margin-top: 0;
		opacity: 0.5;
	}
	
	50%  {
		margin-top: 30px;
		opacity: 1;
	}
	
	100% {
		margin-top:0.5;
		opacity: 0.5;
	}
}
@-o-keyframes jumpInc {
	0%   {
		margin-top: 0;
		opacity: 0.5;
	}
	
	50%  {
		margin-top: 30px;
		opacity: 1;
	}
	
	100% {
		margin-top:0.5;
		opacity: 0.5;
	}
}
@keyframes jumpInc {
	
	0%   {
		margin-top: 0;
		opacity: 0.5;
	}
	
	50%  {
		margin-top: 30px;
		opacity: 1;
	}
	
	100% {
		margin-top:0.5;
		opacity: 0.5;
	}
}


#universidad{
	display: block;
	background: #FFFFFF;
	width: 100%;
	padding-top: 100px;
	color: #2B2B2B;
	font-size: 1em;
	font-family: 'AccordAlt-Regular';
	width: 100%;
	min-height: 100%;
}


.contenedor-universidad{
	display: block;
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 40px;
	font-family: 'AccordAlt-Regular';
}


.contenedor-universidad-centrado{
	display: block;
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 40px;
	text-align: center;
}


.titular1-verde{
	font-size: 2em;
	font-family: 'Amaranth', sans-serif;
	display: block;
	text-align: center;
	color: #547A13;
	margin-bottom: 20px;
	
}



.titular1-azul{
	font-size: 2em;
	font-family: 'Amaranth', sans-serif;
	display: block;
	text-align: left;
	color: #38617A;
	margin-bottom: 20px;
	
}



.titular1-azul-centrado{
	font-size: 2em;
	font-family: 'Amaranth', sans-serif;
	display: block;
	text-align: center;
	color: #38617A;
	margin-bottom: 20px;
	
}




.titular1-morado{
	font-size: 2em;
	font-family: 'Amaranth', sans-serif;
	display: block;
	text-align: left;
	color: #723C8E;
	margin-bottom: 20px;
	
}


.titular1-blanco{
	font-size: 2em;
	font-family: 'Amaranth', sans-serif;
	display: block;
	text-align: center;
	color:#FFFFFF;
	margin-bottom: 20px;
	
}



.titular1-marron{
	font-size: 2em;
	font-family: 'Amaranth', sans-serif;
	display: block;
	text-align: left;
	color: #93660C;
	
}





.titular1-morado2{
	font-size: 2em;
	font-family: 'Amaranth', sans-serif;
	display: block;
	text-align: center;
	color: #723C8E;
	margin-bottom: 20px;
	
}


.titular2-azul{
	font-size: 1.3em;
	font-family: 'Amaranth', sans-serif;
	display: block;
	text-align: left;
	color: #037D87;
	margin-bottom: 10px;
}


.titular2-morado{
	font-size: 1.3em;
	font-family: 'Amaranth', sans-serif;
	display: block;
	text-align: left;
	color: #723C8E;
	margin-bottom: 10px;
}


.titular2-marron{
	font-size: 2em;
	font-family: 'Amaranth', sans-serif;
	display: block;
	text-align: center;
	color: #93660C;
	margin-bottom: 10px;
}


.titular3-marron{
	font-size: 1.3em;
	font-family: 'Amaranth', sans-serif;
	display: block;
	text-align: left;
	color: #93660C;
	margin-bottom: 10px;
}


.sub-titulo-morado{
	font-size: 1.5em;
	display: block;
	text-align: center;
	color: #723C8E;
	margin-bottom: 10px;
}




#vision{
	display: inline-block;
	width: 32.5%;
	background: #F2F7F9;
	vertical-align: top;
	box-sizing: border-box;
	padding: 20px;
	text-align: justify;
	min-height: 200px;
}


#valores{
	display: inline-block;
	width: 32.5%;
	background: #F2F7F9;
	vertical-align: top;
	box-sizing: border-box;
	padding: 20px;
	text-align: justify;
	margin-left: 10px;
	margin-right: 10px;
	min-height: 200px;
}

#propuesta{
	display: inline-block;
	width: 32.5%;
	background: #F2F7F9;
	vertical-align: top;
	box-sizing: border-box;
	padding: 20px;
	text-align: justify;
	min-height: 200px;
}


.separador-azul{
	display: block;
	width: 100%;
	max-width: 80%;
	height: 1px;
	background: #0073BC;
	margin: 0 auto;
}

.lista-valores{
	list-style-image:url(../img/vineta.png);
	padding-left: 20px;
	text-align: left;
}


#modelo-estrategico{
	width: 85%;
	display: block;
	margin: 0 auto;
}


.ensananza{
	display: inline-block;
	width: 300px;
	margin: 60px;
}


.contenedor-ensenanza{
	border: 2px solid #723C8E;
	width: 300px;
	height: 300px;
	border-radius: 100%;
	vertical-align: middle;
	padding-left: 40px;
	padding-right: 40px;
	padding-top: 50px;
	box-sizing: border-box;
}

.titulo-inEnsenanza{
	display: block;
	text-align: center;
	color: #723C8E;
	font-weight: bold;
	font-size: 1.3em;
	margin-bottom: 10px;
}

.btn-ensenanza{
	display: block;
	width: 90%;
	text-align: center;
	color: #FFFFFF;
	font-weight: bold;
	background: #723C8E;
	margin: 0 auto;
	-webkit-border-radius: 10px 10px 10px 10px;
border-radius: 10px 10px 10px 10px;
	padding-top: 8px;
	padding-bottom: 8px;
	cursor: pointer;
	margin-top: -30px;
}


.btn-conoce-mas{
	display: block;
	background: #0063C6;
	color: #FFFFFF;
	text-align: center;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
	padding-right: 10px;
	float: right;
	-webkit-border-radius: 3px 3px 3px 3px;
	border-radius: 3px 3px 3px 3px;
	margin-right: 15px;
	margin-top: 8px;
}


.cuadros-masinfo{
	display:inline-block;
	width: 20%;
	vertical-align: top;
	text-align: left;
	margin-left: 25px;
	margin-right: 25px;
	color:#848484;
}



.titular-cuadro1{
	display: block;
	width: 100%;
	background: #733D8F;
	color: #FFFFFF;
	text-align: center;
	-webkit-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
	padding-top: 10px;
	padding-bottom: 10px;
	box-sizing: border-box;
	min-height: 60px;
	margin-bottom: 20px;
	
}

.titular-cuadro2{
	display: block;
	font-size: 0.9em;
}

li{
	margin-bottom: 5px;
}


#propuesta-formativa{
	display: block;
	width: 80%;
	margin: 0 auto;
}


#filosofia-postgrado{
	display: block;
	width: 70%;
	padding-top: 50px;
	margin: 0 auto;

}


#contenededor-alianzas{
	display: block;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	font-family: 'AccordAlt-Regular';
}


.alianza{
	display: inline-block;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: #B49557;
	vertical-align: middle;
	color: #FFFFFF;
	padding: 30px;
	box-sizing: border-box;
	margin: 15px;
	font-family: 'AccordAlt-Regular';
	font-size: 1em;
	
}

#hitos{
	display: block;
	width: 100%;
	background: #3E3C8C;
}



#temas{
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f9f8f2+0,dbd9d4+100 */
background: #f9f8f2; /* Old browsers */
background: -moz-radial-gradient(center, ellipse cover, #f9f8f2 0%, #dbd9d4 100%); /* FF3.6-15 */
background: -webkit-radial-gradient(center, ellipse cover, #f9f8f2 0%,#dbd9d4 100%); /* Chrome10-25,Safari5.1-6 */
background: radial-gradient(ellipse at center, #f9f8f2 0%,#dbd9d4 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9f8f2', endColorstr='#dbd9d4',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	width:100%;
	height:100%;
	margin:0 auto;
	text-align: center;
	box-sizing: border-box;
	vertical-align: middle;
	display: table;

}



.contenido-temas{
	display: table-cell;
	width:100%;
	height: 100%;
	margin: 0 auto;
	vertical-align: middle;
	font-family: 'AccordAlt-Regular';
	box-sizing: border-box;

}

.contenedor-interno-temas{
	display: block;
	width: 100%;
	margin: 0 auto;
	color: #FFFFFF;
	font-size: 1.1em;

}


#contenedor-btn-temas{
	display: block;
	width:100%;
}


.btn-temas{
	display: inline-block;
	width: 250px;
	margin: 30px;
}




#practicas-laborales{
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#e3d789+0,c59800+100 */
	background: rgb(227,215,137) fixed; /* Old browsers */
	background: -moz-radial-gradient(center, ellipse cover, rgba(227,215,137,1) 0%, rgba(197,152,0,1) 100%); /* FF3.6-15 */
	background: -webkit-radial-gradient(center, ellipse cover, rgba(227,215,137,1) 0%,rgba(197,152,0,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: radial-gradient(ellipse at center, rgba(227,215,137,1) 0%,rgba(197,152,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e3d789', endColorstr='#c59800',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	width:100%;
	min-height:100%;
	margin:0 auto;
	text-align: center;
	box-sizing: border-box;
	vertical-align: middle;
	display:block;
	padding-top: 100px;
	padding-bottom: 100px;

}


.contenido-practicas{
	display: block;
	margin: 0 auto;
	width: 100%;
	max-width: 1200px;
}



.seccion-practicas{
	display: block;
	width: 100%;
	box-sizing: border-box;
	background: #FFFFFF;
	margin: 0 auto;
	text-align: center;
	padding: 20px;
	color: #727272;
	font-size: 1em;
	font-family: 'AccordAlt-Regular';
	margin-bottom: 20px;
}


.contenedor-datos-practicas{
	display: block;
	width: 100%;
	
}


.grafico-practicas{
	display: block;
	width: 100%;
	vertical-align: top;
}


.cuadro-practicas{
	display: inline-block;
	width: 38.5%;
	vertical-align: top;
	padding: 20px;
	box-sizing: border-box;
}


.cuadro-practicas-grafico{
	display: inline-block;
	width: 22%;
	vertical-align: top;
	padding: 10px;
	box-sizing: border-box;
}


.subtitulo-practicas{
	display: block;
	text-align: center;
	margin: 0 auto;
	background: #D9A93F;
	color: #FFFFFF;
	-webkit-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
	min-width: 50%;
	max-width: 60%;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-bottom: 20px;
}


#impacto-social{
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#00a2df+0,0079ad+100 */
	background: rgb(0,162,223); /* Old browsers */
	background: -moz-radial-gradient(center, ellipse cover, rgba(0,162,223,1) 0%, rgba(0,121,173,1) 100%); /* FF3.6-15 */
	background: -webkit-radial-gradient(center, ellipse cover, rgba(0,162,223,1) 0%,rgba(0,121,173,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: radial-gradient(ellipse at center, rgba(0,162,223,1) 0%,rgba(0,121,173,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00a2df', endColorstr='#0079ad',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	width:100%;
	min-height:100%;
	margin:0 auto;
	text-align: center;
	box-sizing: border-box;
	vertical-align: middle;
	display:block;
	padding-top: 100px;
	padding-bottom: 100px;

}






.sinoptico-impacto{
	display: inline-block;
	width: 48%;
	vertical-align: top;
	box-sizing: border-box;
	padding: 20px;
	border: 1px solid #D5D5D5 ;
	margin: 10px;
	-webkit-border-radius: 4px 4px 4px 4px;
	border-radius: 4px 4px 4px 4px;
}



.subtitulo-impacto{
	font-size: 1.3em;
	font-family: 'Amaranth', sans-serif;
	display: block;
	text-align: left;
	color: #0080C4;
	margin-bottom: 10px;
}





.medio-sinoptico{
	display: block;
	box-sizing: border-box;
	min-height: 180px;
	text-align: left;

	
}



.medio-sinoptico2{
	display: block;
	box-sizing: border-box;
	min-height: 280px;
	text-align: left;

	
}

.medio-sinoptico-ambiental{
	display: block;
	box-sizing: border-box;
	text-align: left;
	
}




.down-sinoptico-ambiental{
	display: block;
	width: 100%;
	margin-top: -20px;
}





.icono-de-dos{
	
	display: inline-block;
	width: 49%;
}


.icono-de-tres{
	
	display: inline-block;
	width: 32.85%;
	vertical-align: top;
}



#desempeno-ambiental{
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#78b421+0,57a74e+100 */
	background: rgb(120,180,33); /* Old browsers */
	background: -moz-radial-gradient(center, ellipse cover, rgba(120,180,33,1) 0%, rgba(87,167,78,1) 100%); /* FF3.6-15 */
	background: -webkit-radial-gradient(center, ellipse cover, rgba(120,180,33,1) 0%,rgba(87,167,78,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: radial-gradient(ellipse at center, rgba(120,180,33,1) 0%,rgba(87,167,78,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#78b421', endColorstr='#57a74e',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	width:100%;
	min-height:100%;
	margin:0 auto;
	text-align: center;
	box-sizing: border-box;
	vertical-align: middle;
	display:block;
	padding-top: 100px;
	padding-bottom: 100px;
}



.subtitulo-ambiental{
	font-size: 1.3em;
	font-family: 'Amaranth', sans-serif;
	display: block;
	text-align: left;
	color: #399D3F;
	margin-bottom: 10px;
}


.cuadro-ambiental{
	display: block;
	width: 300px;
	float: right;
	background: #7AC943;
	color: #FFFFFF;
	box-sizing: border-box;
	padding: 20px;
	-webkit-border-radius: 8px 0 0 8px;
border-radius: 8px 0 0 8px;
	margin-right: -20px;
	margin-top: -35px;
	margin-bottom: 30px;
	text-align: right;
}


.seccion-ambiental{
	width: 23.9%;
	display: inline-block;
	vertical-align: top;
	-webkit-border-radius: 10px 10px 10px 10px;
	border-radius: 10px 10px 10px 10px;
	border: 2px solid #7AC943;
	box-sizing: border-box;
	padding: 20px;
	margin: 5px;
	min-height: 200px;
	text-align: left;
}








.seccion-ambiental-circular{
	width:180px;
	height: 180px;
	display: inline-block;
	vertical-align: top;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	box-sizing: border-box;
	padding: 20px;
	margin: 10px;
	background: #509E27;
	color: #FFFFFF;
	padding: 18px;
	
}


.contenedor-circulos-ambiental{
	display: block;
	width: 100%;
	text-align: center;
}


.contenedor-energia{
	display: block;
	width: 100%;
	text-align: center;
}



.seccion-energia{
	display: inline-block;
	width: 300px;
	vertical-align: top;
	padding-left: 60px;
	padding-right: 60px;
	box-sizing: border-box;
	margin: 20px;
	text-align: center;
}


.icono-energia{
	display: block;
	width: 60%;
	margin: 0 auto;
	margin-bottom: 10px;
}


#contenedor-timeline{
	width: 100%;
	padding-top: 50px;
	background: #E5F1F9;
	text-align: center;
	padding-bottom: 100px;
}

.titulo-lineatiempo{
	font-size: 1.5em;
	font-family: 'Amaranth', sans-serif;
	color: #475863;
	display: block;
}

.bajada-lineatiempo{
	font-size: 2em;
	font-family: 'Amaranth', sans-serif;
	color: #096293;
	display: block;
	margin-bottom: 50px;
}


@media screen and (max-width:1024px){
	

	header nav a {
	padding:3px 20px;
	font-size:0.6em;
	min-width: 80px;
	margin: 5px;

}
	
	.header2 nav {
	font-size: 1.3em;
	min-width: 20px;
}
	
	.contenedor-interno{
	width: 700px;
	font-size: 0.9em;

}
	
	.titular1{
		width: 500px; 
	}
	
	
	
	#btn-descarga{
	width:300px;

}

	.header2 {
	height:60px;
	}
	
	
	.titular1-verde{
	font-size: 1.6em;
	}

	#universidad{
	font-size: 0.9em;
	}
	
	
	#vision{
	width: 32%;
	padding: 15px;
	min-height: 230px;
}


	#valores{
	display: inline-block;
	width: 32%;
	margin-left: 10px;
	margin-right: 10px;
	min-height: 230px;
	}

	
	#propuesta{
	display: inline-block;
	width: 32%;
	padding: 15px;
	min-height: 230px;
	}
	
	
	.contenedor-universidad{
	width: 100%;
	max-width: 100%;	
	}
	
	
	.contenedor-universidad-centrado{
	width: 100%;
	max-width: 100%;
	}
	
	.titular1-azul{
	font-size: 1.6em;
	margin-bottom: 10px;	
	}

	
	
	#modelo-estrategico{
	width: 100%;
	display: block;
	margin: 0 auto;
	}
	
	
	.separador-azul{
		width: 100%;
		max-width: 95%;
	}
	
	.titular1-morado{
	font-size: 1.6em;
	
}

	#propuesta-formativa{
	width: 100%;
	}


	#filosofia-postgrado{
		width: 85%;
	}
	
	
	.cuadros-masinfo{
	width: 22%;
	margin-left: 10px;
	margin-right: 10px;
	}
	
	
	.titular-cuadro1{
	width: 100%;
	padding-top: 7px;
	padding-bottom: 7px;
	min-height: 50px;
	margin-bottom: 10px;
	
	}
	
	.btn-temas{
	width: 200px;
	margin: 20px;
	}
	
	


.contenido-practicas{
	width: 100%;
	max-width: 100%;
	padding-left: 20px;
	padding-right: 20px;
	box-sizing: border-box;
	}
	
	
	
	
	.sinoptico-impacto{
	width: 47.6%;
	padding: 20px;

}
	
	
	.cuadro-ambiental{
	width: 250px;
	}

	.seccion-ambiental{
	width: 22.8%;
	-webkit-border-radius: 8px 8px 8px 8px;
	border-radius: 8px 8px 8px 8px;
	padding: 13px;
	margin: 5px;
	}	
	
	
	.seccion-ambiental-circular{
	width:175px;
	height: 175px;
	margin: 4px;
	padding: 18px;
	
}

	
	.seccion-energia{
	display: inline-block;
	width: 200px;
	vertical-align: top;
	padding-left: 10px;
	padding-right: 10px;
	box-sizing: border-box;
	margin: 20px;
	text-align: center;
}
	
}






