@charset "utf-8";
/* CSS Document */
* {
	margin:0;
	padding:0;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}
.social {
	position: fixed; /* Hacemos que la posición en pantalla sea fija para que siempre se muestre en pantalla*/
	left: 0; /* Establecemos la barra en la izquierda */
	top: 200px; /* Bajamos la barra 200px de arriba a abajo */
	z-index: 2000; /* Utilizamos la propiedad z-index para que no se superponga algún otro elemento como sliders, galerías, etc */
}
 
	.social ul {
		list-style: none;
	}
 
	.social ul li a {
		display: inline-block;
		color:#fff;
		background: #000;
		padding: 10px 15px;
		text-decoration: none;
		-webkit-transition:all 500ms ease;
		-o-transition:all 500ms ease;
		transition:all 500ms ease; /* Establecemos una transición a todas las propiedades */
	}
 
	.social ul li .icon-facebook {background:#3b5998;} /* Establecemos los colores de cada red social, aprovechando su class */
/*	.social ul li .icon-twitter {background: #00abf0;}
	.social ul li .icon-googleplus {background: #d95232;}      */
	.social ul li .icon-youtube {background: #ae181f;}
	.social ul li .icon-mail {background: #666666;}
 
	.social ul li a:hover {
		background: #000; /* Cambiamos el fondo cuando el usuario pase el mouse */
		padding: 10px 30px; /* Hacemos mas grande el espacio cuando el usuario pase el mouse */
	}
label
	{
	display:block;
	margin-top:20px;
	letter-spacing:1px;
	}
.formulario {
	display: block;
	width: 480px;
	color: #000000;
	font-family: Arial;
	float: left;
}
form {
	margin: 0 auto;
	width: 400px;
}

input, textarea {
	width: 380px;
	height: 36px;
	background: #fff;
	border: 2px solid #f6f6f6;
	padding: 10px;
	margin-top: 5px;
	font-size: 14px;
	color: #000000;
}

textarea {
height:150px;
}

#submit, #reset {
width:85px;
height:35px;
border:none;
margin-top:20px;
cursor:pointer;
}
.slide {
	width:600px;
	height:260px;
	border: 5px solid #aa0000;
	overflow-x: hidden;
	overflow-y: hidden;
}
.slide li {
	list-style:none;
	float:left;
}
. slide li img {
	width:500px;
	height:280px;
}