
.contenedor {
	width: 100%;
	margin: auto;
}

/*PIE DE PAGINA*/
footer {
	background: #f0f0f0;
	width: 100%;
   	bottom:0px;
}

footer .contenedor {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-top: 0;
	padding-bottom: 5px;
}
#derechos {
	margin-top: 0px;
	display: flex;
	flex: auto;
}
#derechos .copy {
	font-size: 12px;
	color: gray;
	flex: auto;
	padding-left: 3%
}
#derechos img {
	margin-left: 10px;
	max-height: 48px;
	padding-right: 3%;
	height: 18px;
}

.sociales {
	width: 100%;
	font-size: .9em;
	text-align: center;
}

.sociales a {
	margin: 0px 20px;
	color: gray;
	text-decoration: none;
	cursor: pointer;
}

.sociales a:hover {
	color: orange;
}

.menu_down {
	margin-bottom: 0;
	list-style: none;
	/*display: none;*/
}

.menu_down li {
	/*border-bottom: 1px solid rgba(255,255,255,.3);*/
}

.menu_down li a {
	color: gray;
	text-decoration: none;
	line-height: 4;
	display: block;
	padding-left: .7em;
	font-size: 1em;
}

@media screen and (min-width: 600px) {

	footer {
		border-top: 1px solid rgba(0,0,0,.1);
	}
	.menu_down {
		display: block;
		display: flex;
	}
}
@media screen and (min-width: 768px) {

	.contenedor {
		width: 100%;
	}

	/*PIE DE PAGINA*/
	.menu_down {
		display: flex;
	}

	.menu_down li {
		flex: auto;
		text-align: center;
		border-bottom: 0;
	}
	.menu_down li a {
		padding-left: 0;
		line-height: 4;
	}

}

@media (min-width: 1280px) {
	.contenedor {
		width: 1280px;
	}

}