#header{
	position: fixed;
	display: block;
	width: 98vw;
	height: auto;
	top: 0;
	padding-top: 5px;
	z-index: 1000;
}
/* Imagen y login del header */
.headerTopIn{
	display: flex;
	box-sizing: border-box;
	object-fit: contain;
	max-height: 15vh;
}

/* Espacio para la imagen del logo */
.divImgTop{
	display: flex;
	overflow: visible;
	flex-grow: 2;
	object-fit: contain;
	height: auto;
}
.logoTop{
	width: 100%;
	height: 100%;
	object-fit: contain;
	justify-items: flex-start;
	margin-left: 1vw;
}
.headerCenter{
	display: flex;
	flex-grow: 100;
	box-sizing: border-box;
}
/* Espacio para el login */
.divLogin{
	display: flex;
	flex-grow: 2;
	object-fit: contain;
	overflow: visible;
	width: auto;
}
.fieldsetLogin{
	display: flex;
	flex-direction: column;
    align-items: center;
	border: 2px solid #4a6da7;
	border-radius: 10px;
	color: white;
	height: auto;
}
/* CSS para el login cuando estás in */
.divWelLogin{
	color: white;
    width: 90%;
}
.divUserInfor{
    display: flex;
    flex-direction: row;
    width: 90%;
    justify-content: space-between;
    flex-wrap: wrap;
}
.divModUser{
	color: white;
    width: 45%;
}
.divLogoutUser{
	color: white;
    width: 45%;
}

/* CSS para el login cuando estás out */
.divToLogin1, .divToLogin2{
	display: flex;
	flex-direction: row;
	margin: 5px;
	justify-content: space-between;
	align-items: stretch;
	color: white;
}
.lblMailToLogin{
	display: flex;
	margin-right: 5px;
	flex-grow: 1;
}
.mailToLogin{
	display: flex;
	width: auto;
	flex-grow: 2;
}
.divToLogin3{
	display: flex;
	flex-direction: row;
	margin: 5px;
	justify-content: space-around;
	align-items: stretch;
}
#btLogin, #btRegistrar{
	flex-grow: 1;
	width: 80%;
}

/* Css para el menú del header */
.divMenu{
	display: flex;
	color: white;
	width: 98vw;
	height: auto;
	margin-top: 1%;
	margin-bottom: 1%;
	overflow: visible;
}
.tableMenu{
	width: 100%;
	color: white;
	background-color: black;
	border: 2px solid #4a6da7;
	border-radius: 10px;
	border-collapse: collapse;
	align-content: center;
}
.trMenu td{
	color: white;
	background-color: black;
	border: 1px solid #4a6da7;
	padding: 10px;
	text-align: center;
}
a{
    color: white;
	text-decoration: underline;
}
a:hover{
	color: #4a6da7 !important;
}
a:visited{
	color: white;
	text-decoration: underline;
}