/* Style the navbar */
input, label {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: normal;
}

#navbar {
	display:grid;
	grid-template-columns: 1fr 1fr;
	z-index:9997;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:auto;
	background-color: #fff;
	overflow:hidden;
	/*min-height:20px;*/
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.75);
}

/* Navbar links */
/*
#navbar a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px;
  text-decoration: none;
}
*/

/* Page content */
.content {
  padding: 16px;
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
  padding-top: 60px;
}

.login_usuarios {
	/*display:grid;
	grid-template-columns: 70% 30%;	*/
	width:900px;
	/*width:50%;*/
	margin:auto;
	color:#000000;
	font-family:Arial;
	margin-top:150px;	
	border-radius:10px;
	padding:30px;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.75);		
}

.info_usuario {
	/*width: 300px;*/
	display: block;	
	text-align: center;
	float: right;
	margin-right: 30px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #123978;
	margin-top: 10px;
	border-radius: 10px;
	padding: 10px;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(2, 67, 117, 0.8);
	-moz-box-shadow: 0px 5px 15px 0px rgba(2, 67, 117, 0.8);
	box-shadow: 0px 5px 15px 0px rgba(2, 67, 117, 0.8);
}

.info_usuario_grid {
	/*width: 300px;*/
	display: block;
	text-align: center;
	height:auto;
	margin-right: 30px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #123978;
	margin-top: 10px;
	border-radius: 10px;
	padding: 10px;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(2, 67, 117, 0.8);
	-moz-box-shadow: 0px 5px 15px 0px rgba(2, 67, 117, 0.8);
	box-shadow: 0px 5px 15px 0px rgba(2, 67, 117, 0.8);
}

.contenedor {
	margin-left: 100px;
	margin-right: 100px;
	height: auto;
	width: auto;
	border-radius: 10px;
	padding: 30px;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.75);
}

h4 {
	color: #123978;
}

label{
	margin-left:5px;
}

.boton {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 14px;
	color: #FFFFFF;
	border-style: solid;
	border-color: #4095B4;
	border-width: thin;
	text-decoration: none;
	border-radius: 4px;
	text-align: center;
	vertical-align: middle;
	/*background-color: #598ADB;*/
	background-color: #4095B4;
	white-space: normal;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
	padding-right: 10px;
	cursor: pointer;
	transition: all 0.3s ease 0s;
}

	.boton:hover {
		/*background-color: #B0CFEE;*/
		background-color: #C6E4ED;
		border-color: #4095B4;
	}

.oculto {
	display: none;
}

.loader {
	border: 16px solid #f3f3f3;
	border-radius: 50%;
	border-top: 16px solid #3498db;
	width: 120px;
	height: 120px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
	z-index: 9999;
	position: fixed;
	top: 50%;
	left: 50%;
	margin: -60px 0 0 -60px;
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.fondo_espere {
	width: 100%;
	background-color: Gray;
	moz-opacity: 0.5;
	khtml-opacity: .5;
	opacity: .5;
	filter: alpha(opacity=50);
	z-index: 9998;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
}

.mensaje_timeout {
	/*display:grid;
	grid-template-columns: 70% 30%;	*/
	width: 700px;
	margin: auto;
	color: #000000;
	margin-top: 150px;
	border-radius: 10px;
	padding: 30px;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.75);
}