/*aside derecha*/
aside#redes {
	overflow:hidden;
	cursor:pointer;
	display: -webkit-box;
	box-orient: horizontal;
	-webkit-box-orient: horizontal;
	-moz-box-orient: horizontal;
	-o-box-orient: horizontal;
	-ms-box-orient: horizontal;
	box-pack: center;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-o-box-pack: center;
	-ms-box-pack: center;
}

img.imagenesredes {
	opacity: 1;
	padding: 0px 6px 0px 6px;
	
	transform: scale (1,1);
	-webkit-transform: scale (1,1);
	-moz-transform: scale (1,1);
	-o-transform: scale (1,1);
	-ms-transform: scale (1,1);
	
	transition: opacity 0.5s, transform 0.5s;
	-webkit-transition: opacity 0.5s, transform 0.5s;
	-moz-transition: opacity 0.5s, transform 0.5s;
	-o-transition: opacity 0.5s, transform 0.5s;
	-ms-transition: opacity 0.5s, transform 0.5s;
}

img.imagenesredes:hover {
	opacity: 0.75;
	
	transform: scale(1.5,1.5);
	-webkit-transform: scale(1.5,1.5);
	-moz-transform: scale(1.5,1.5);
	-o-transform: scale(1.5,1.5);
	-ms-transform: scale(1.5,1.5);
}