.grad{
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+1,2989d8+50,1e5799+100 */
background: rgb(30,87,153); /* Old browsers */
background: -moz-linear-gradient(left, rgba(30,87,153,1) 1%, rgba(41,137,216,1) 50%, rgba(30,87,153,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left, rgba(30,87,153,1) 1%,rgba(41,137,216,1) 50%,rgba(30,87,153,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right, rgba(30,87,153,1) 1%,rgba(41,137,216,1) 50%,rgba(30,87,153,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#1e5799',GradientType=1 ); /* IE6-9 */  width:100%; color:#fff; font-size:20px;
}

.display{
	display: table-cell;
	vertical-align: middle;
}

.v-mid{
	vertical-align: middle;
}

.socio{
/*	height: 120px;  */
	width: 250px;
	padding: 20px
}
.socio1{
/*	height: 120px;  */
	width: 300px;
	padding: 20px
}
.socio2{
/*	height: 120px;  */
	width: 290px;
	padding: 20px 10px 20px 40px;
}

.ven1 {
	width: 600px;
	height: 400px;
	margin: 20px 10px 0 10px;
	overflow: hidden;
}
.ven2 {
	width: 600px;
	height: 200px;
	margin: 20px 10px 0 10px;
	overflow: hidden;
}
/*botones*/
/*Azul*/
@-webkit-keyframes boton_azul {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
@keyframes boton_azul {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
.boton_azul {
	width: auto;
	cursor:pointer;
	padding: 10px 15px 10px 15px;
	border-width: 1px;
  	border-color: rgb(65, 107, 139);
  	border-style: solid;
  	border-radius: 5px;
  	background-color: rgb(79, 146, 198);
  	font-size: 12px;
  	font-family: "Arial";
  	color: rgb(246, 246, 246);
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px transparent;
	position: relative;
}
.boton_azul:before {
	content: '';
	position: absolute;
	border-width: 1px;
	z-index:-5;
	border-radius: 5px;
	background-color: rgb(79, 146, 198);
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	-webkit-animation-duration: 0.4s;
	animation-duration: 0.4s;
}
.boton_azul:hover:before, .boton_azul:focus:before, .boton_azul:active:before {
	-webkit-animation-name: boton_azul;
	animation-name: boton_azul;
}