
  body{
  	padding: 0px;
  	margin: 0px;
	background-image: url(../img/fondo_p1.png);
	background-attachment: fixed;
  overflow: scroll;
	background-size:100%;

}
.contenedor{
	margin-top: 20px;
	display: grid;
	grid-template-columns: auto;
	grid-template-rows: auto auto auto;
}
.contenedor .cabecera{
	grid-column: 1/2;
	grid-row: 1/2;
	width: 100%;
	display: grid;
	grid-template-columns: 15% 70%  15%;
	grid-template-rows: auto auto;
	grid-row-gap: 5px;
}
.contenedor .cabecera .titulo{
	grid-row: 1/2;
	grid-column: 2/3;
	width: 100%;
}
.contenedor .cabecera .padre{
	grid-row: 2/3;
	grid-column: 2/3;
	width: 100%;
	display: grid;
	grid-template-columns: 38% 24% 38%;
	grid-template-rows: auto;
}
.contenedor .cabecera .padre  .imagen_padre{
	width: 100px;
	height:100px;
	grid-column:2/3;

	
	}


.contenedor .mapa_cauca{
	grid-column: 1/2;
	grid-row: 2/3;
	width: 100%;
	grid-template-columns: 10% 90% 10%;
	grid-template-rows: auto;

}
.contenedor .mapa_cauca_imagen{
    position: fixed;
    bottom:0px;
    left:0px;
	width: 100%;
	grid-column: 1/4;
	grid-row: 1;

}

.contenedor .escudo{
	position: relative;
	height: 200px;
	bottom: 0px;
	left: 0px;
	grid-column: 1/2;
	grid-row: 3/4;
}
.contenedor .mapa_cauca .botones{
	position: absolute;
	top: 37%;
	left: 25%;
	width:50%;
	height:400px;
	
}
.contenedor .mapa_cauca .botones img{
	width: 100px;
	
}
.boton{
	background-color: #71b720;
	border-radius: 15px;
	width: 100%;
	height:30px;
	border:1px solid gray;
	color: white;
	box-shadow: 3px 1px 1px black;
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	transition: 0.3s all;
	font-size:1.1em;
	font-weight:bold;
}
.boton:hover{
	background-color: #4cd137;
	cursor:pointer;
	text-decoration:none;
	color:white;
}

