*{
	padding: 0;
	margin:0 auto;
	-webkit-box:border-box;
	-moz-box-sizing:border-box;
	box-sizing: border-box;
	max-width: 1000px;
	-webkit-user-select: text;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; 
}

.contenedor{
	background: #20935d;
}
.contenedorpie{
	display: flex;
}
.menu{
	position: fixed;
	background:#20935d;
	width: 100%;
	max-width: 1000px;
	max-height: 40px;
	margin: 0 auto;
	margin-bottom: 5px;
	padding: 5px;
	padding-top: 10px;
	text-decoration: none;
	top:0;
	box-shadow: 0px 4px 3px rgba(0,0,0,.5);
	display:flex;
	justify-content: space-between;
	align-items: center;
	z-index: 5;
}
.headuser{
	padding-left: 25px;
	font-family: 'Arial Narrow', Arial;
	font-size: 20px;
	color: white;
	width:60%;
}
.headicon{
	float: left;
	height: 32px;
	width:32px;
	color: black;
}
.headicon1{
	float: right;
	height: 24px;
	width: 24px;
	color: black;
	max-width: 24px;
}
.headicon2{
	float: right;
	height: 24px;
	width: 24px;
	color: black;
	max-width: 24px;
}
.logo{
	width: 32px;
	height: 32px;
	alt: "Volver";
}
.icon2{
	height: 24px;
	width: 24px;
	alt: "Menu";
}

#submenu{
	background:#20935d;
	z-index: 10;
	position: fixed;
	top:40px;
	width: 100%;
	max-width: 1000px;
	display:none;
	height:0px;	
	text-decoration: none;
	box-shadow: 0px 4px 3px rgb(0 0 0 / 50%);
	transition: all 500ms ease-in-out;
}
#submenu>div{
    width: 50%;
    float:right;
}
#submenu>div>div{
	height: 50%;
	text-align: center;
	padding-top: 10px;
	display: none;
	opacity: 0;
	transition: opacity 1s;
}
#submenu>div>div>a{
	cursor: pointer;
	text-decoration: none;
	font-family: 'Arial Narrow', Arial;
	font-size: 16px;
	color: white;
}
#submenu>div>div>a>img{
	float: right;
	height: 18px;
	width: 18px;
	alt: "Logout";
	float: right;
	color: black;
}

.menufooter{
	font-family: 'Arial Narrow', Arial;
	font-size: 20px;
	background:#20935d;
	color: white;
	width: 100%;
	max-width: 1000px;
	height: 40px;
	margin: 0 auto;
	margin-bottom: 5px;
	padding: 5px;
	text-decoration: none;
	position:fixed;
	z-index:100;
	bottom: 0px;
	box-shadow: 0px 4px 3px rgba(0,0,0,.5);
	display:flex;
	justify-content: space-between;
}
#subfooter{
	background:#babd25;
	font-family: 'Arial Narrow', Arial;
	font-size: 16px;
	color: white;
	z-index: 9;
	position: fixed;
	bottom: 40px;
	width: 100%;
	max-width: 1000px;
	max-height: 40px;
	display:none;
	height:0px;	
	text-decoration: none;
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
	transition: all 500ms ease-in-out;
}
.subfooterelem{
	display: none;
	padding-top: 10px;
	opacity: 0;
	transition: opacity 500ms;
}
#pass{
	background:#b8b8b8;
	font-family: 'Arial Narrow', Arial;
	font-size: 16px;
	color: black;
	z-index: 9;
	position: fixed;
	bottom: 40px;
	width: 100%;
	max-width: 1000px;
	max-height: 50vh;
	display:none;
	height:0px;	
	text-decoration: none;
	border-top-left-radius: 00px;
	border-top-right-radius: 00px;
	transition: all 500ms cubic-bezier(0, 0, 0.11, 0.98);
}
#pass2{
	width: 100%;
	text-align: center;
}
.passelemelem{
	display: none;
	padding-top: 10px;
	opacity: 0;
	transition: opacity 500ms;
}
.pass_login{
	border-radius: 5px;
	width: 300px;
    font-size: 20px;
	padding: 8px;
	text-align: center;
	margin-top: 15px;
}
.passcab{
	display:flex;
    align-items: center;
	background: #686868;
	height: 30px;
    justify-content: center;
    font-size: 18px;
    font-family: arial;
    color: white;
}
.pass2_enviar{
    display:inline-block;
    font-size: 30px;
	width:150px;
	margin: 12px;
	text-decoration: none;
	text-align: center;
	padding: 10px 10px;
    font-weight: 2px;
    color: #ffffff;
    background-color: #9b9b9b;
    border-radius: 15px;
    border: 2px solid #0016b0;
}
.pass2_enviar:hover{
    color: black;
	background-color: #ffffff;
}
.preloader {
	position:fixed right;
	width: 25px;
	height: 25px;
	border: 4px solid #eee;
	border-top: 4px solid #666;
	border-radius: 50%;
	animation-name: girar;
	animation-duration: 1.2s;
	animation-iteration-count: infinite;
	animation-timing-function: cubic-bezier(0.74, 0.43, 0.37, 0.63);
}
@keyframes girar {
	from {
	  transform: rotate(0deg);
	}
	to {
	  transform: rotate(360deg);
	}
}
.window {
	position: fixed;
	z-index: 4;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transform: scale(1.1);
	transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    display: block;
    text-align: center;
}
.showwindow {
	opacity: 1;
	visibility: visible;
	transform: scale(1.0);
	transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
	display: block;
}
.windowinfo {
	position: fixed;
	z-index: 4;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transform: scale(1.1);
	transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    display: block;
    text-align: center;
}
.showwindowinfo {
	opacity: 1;
	visibility: visible;
	transform: scale(1.0);
	transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
	display: block;
}
#win{
	font-family: Arial;
	text-align: center;
    position: relative;
    margin: 0px auto;
	top: 130px; 
	transform: translate(0%, 0%);
	background-color: white;
	padding: .5rem .5rem;
	width: 80%;
	height: 250px;
	border-radius: 0.2rem;
}
#win1{
	margin-top: 4px;
    font-style: oblique;
    font-size: 18px;
}
#win2{
    font-size: 14px;
	margin-top: 20px;
	line-height: 150%;
	overflow-y: auto;
    height: 200px;
}
.botoninfowa {
	float: right;
	width: 1.5rem;
	line-height: 1.5rem;
	text-align: center;
	font-size: 30px;
	cursor: pointer;
	border-radius: 0.25rem;
	background-color: lightgray;
}
.botoninfowa:hover {
	background-color: darkgray;
}