*{
	margin:0;
	padding:0;
	text-decoration: none;
}
.modal{
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.85);
	position: absolute;
	animation: fade 0.5s;
}
@keyframes fade{
	from{
		background: rgba(0,0,0,0); 
		}  
	to{
		background: rgba(0,0,0,0.85);
		} 
	}
@-webkit-keyframes fade{
	from{
		background: rgba(0,0,0,0); 
		}  
	to{
		background: rgba(0,0,0,0.85);
		}  
	}
@-moz-keyframes fade{
	from{
		background: rgba(0,0,0,0); 
		}  
	to{
		background: rgba(0,0,0,0.85);
		} 
	}
.login_centro{
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
	z-index: 2;
	padding-bottom: 30px;
	background-size: 100% 8%;
	display: block;
}

.login_centro .login{
    width: 300px;
    height: auto;
    padding: 0 20px 20px 20px;
    color: #0F465B;
    box-sizing: border-box;
	background: url(../imagenes/fondo_nav.jpg), #EEE;
	background-position: center top;
	background-repeat: no-repeat no-repeat;
    border: #FFF solid 1px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.8);
	position: relative;
	animation: escala 0.5s;
	-webkit-animation: escala 0.5s;
	overflow: hidden;
}
.login_centro .login::before{
	content: "";
	width: 30%;
	height: 50px;
	background: #187CF6;
	transform: skewX(30deg);
	position: absolute;
	top: 0;
	right: -20px;
}
@keyframes escala{
	from{
		transform: scale(0.8); 
		}  
	to{
		transform: scale(1);
		} 
	}
@-webkit-keyframes escala{
	from{
		transform: scale(0.7); 
		}  
	to{
		transform: scale(1);
		} 
	}
@-moz-keyframes escala{
	from{
		transform: scale(0.7);
		}  
	to{
		transform: scale(1);
		} 
	}
h4{
	font-family: 'Conv_calibri_0';
    font-size: 28px;
    color: #FFF;
    font-weight: normal;
    margin: 6px 0 20px 0;
}
.login input{
	width: 100%;
	border: #333 solid 1px;
	margin-top: 10px;
	border-radius: 5px;
	box-sizing: border-box;
	padding: 5px 10px;
	font-size: 18px;
	color:#333;
	background: none;
	background: #FFF;
}
::placeholder{
	color: rgba(0,0,0,0.5);
	letter-spacing: normal;
}
.login input.bot_enviar{
	color: #FFF;
	background: #187CF6;
	display: block;
	padding: 5px 10px;
	font-family: 'Conv_calibri_0';
	font-size: 20px;
	text-align: center;
	width: auto;
	float: right;
	cursor: pointer;
	transition: all 0.2s ease-out;
	box-shadow: 0 1px 2px 0px rgba(0,0,0,0.7);
	border-radius: 0;
	border: none;
}
.login input.bot_enviar:hover{
	transform: scale(1.1);
	background: #133F88;
	box-shadow: 0 5px 10px -2px rgba(0,0,0,0.7);
}
.login ul{
	display: block;
	float: right;
	margin-top: 15px;
}
.login ul li{
	float: left;
	font-family: 'Conv_calibri_0';
	font-size: 16px;
	display: inline-block;
	list-style: none;
}
.login ul li a{
	color: #133F88;
}
.login ul li a:hover{
	color: #187CF6;
}
.login ul li:first-child{
	border-right: #999 dotted 2px;
	padding: 0 10px 0 0;
}.login ul li:last-child{
	padding: 0 0 0 10px;
}
.clearfix {
  overflow: auto;
}