@charset "utf-8";
/* CSS Document */

nav {
	float: right;
	height: 30px;
	padding-top: 10px;
}

nav li{
	display: inline-block;
	padding-top: 5px;
	padding-right: 10px;
}

li a {
	color: aliceblue;
	text-decoration: none;
	-ms-transition: all 0.5s ease-in;
	-moz-transition: all 0.5s ease-in;
	-o-transition: all 0.5s ease-in;
	-webkit-transition: all 0.5s ease-in;
	transition: all 0.5s ease-in;
}

li a:hover {
	color: mediumturquoise;
	text-decoration: none;
	-ms-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}





#formulario {
			
			display: block;
			height: 220px;
			margin-top: 30px;
			margin: 0 auto;
			width: 42%;
			-webkit-box-shadow: 0px 1px 1px 1px rgba(0,0,0,0.15);
			-moz-box-shadow: 0px 1px 1px 1px rgba(0,0,0,0.15);
			box-shadow: 0px 1px 1px 1px rgba(0,0,0,0.15);
		}
	
		

		#promo1, #promo2 {
			display: none;
		}
	
	
		.efectoform, textarea, #boton {
			display: block;
			margin-top: 5px;
			width: 99%;
		}
		
		
		#boton {
			border-radius: 4px;
			margin-top: 3px;
			width: 20%;
		}
		
		#boton:hover {
			background: rgba(104,158,253,.40);
			cursor: pointer;
		}




