*{
	box-sizing: border-box;
	padding: 0px;
	margin: 0px;
}
#contenedor{
	align-items: center;
	display: flex;
	flex-wrap: wrap;
}
#cabecera{
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	width: 100%;
}
#cabecera #logo{
	display:flex;
	flex-wrap: wrap;
	justify-content: center;
	min-width: 290px;
	width:20%;
}
#cabecera #logo figure{
	width:100%;
}
#cabecera #logo h4{
	color: #555;
}
#cabecera #titulo{
	text-align: center;
	width:70%;
}
#cabecera #titulo h1{
	text-shadow: 1px 1px 1px #AAA;
}
#filtro{
	width: 95%;
	text-align: right;
}
#filtro input[type="text"]{
	font-size: 1.1rem;
    border-radius: 5px;
    padding: 5px;
    text-transform: uppercase;
    min-width: 24vw;
    background-color: #feffca;
}
#cuerpo{
	display:flex;
	flex-wrap: nowrap;
	margin-top: 30px;
}
aside{
	width:20%;
	display:block;
}
aside ul{
	margin: 10px;
	width: 100%;
}
aside ul li{
	background-color: #2a5d69;
	margin: 7px 3px;
	list-style: none;
}
aside ul li a{
	color: #FFF;
	display: inline-block;
	font-weight: bold;
	padding: 5px 10px;
	text-decoration: none;
	width: 100%;
}
aside ul li a:hover{
	box-shadow: 1px 1px 2px black;
	background-color: #d6f4fb;
	color: #333;
}
#listado_posters{
	align-items: baseline;
	display:flex;
	flex-wrap: wrap;
	justify-content: space-around;
	min-width: 80vw;
	width: 80%;
}
#listado_posters a{
	display: inline-block;
	margin: 3px 5px;
	margin-bottom: 20px;
	width:45%;
	text-decoration: none;
}
#listado_posters a:hover{
	box-shadow: 1px 1px 5px black;
}
.poster{
	border: 1px solid #888;
	padding: 3px 15px;
	
}
.poster .orden_poster{
	background-color: #2a5d69;
	color:#FFF;
	font-size: 1.1em;
	font-weight: bold;
	text-align: center;
}
.poster .autor{
	color:#af4e20;
	font-size: 1.1em;
	font-weight: bold;
	padding: 3px 0px;
}
.poster .titulo_com{
	color:#333;
}
.poster .director_com, .dependencia_com{
	text-align: right;
    font-size: 0.7em;
    color: #888;
}

@media (max-width: 600px) {
	#cabecera #logo{
		display: none;
	}
	aside{
		width:100%;
	}
	#cuerpo{
		flex-wrap: wrap;
	}
	#listado_posters{
		width: 100%;
	}
	#filtro{
		width:100%;
	}
	#filtro #txtFiltro{
		font-size: 1.4em;
		padding: 5px 10px;
		width:100%;	

	}
	#filtro .etiqueta{
		display:none;
	}
	#listado_posters a{
		width: 45%;
	}

}
