/*__________________flexNAV______________*/
.flenav { 
	display:flex;
	flex-direction:row;
	flex-wrap: wrap;
	justify-content: space-between;
	background-color: #333;
	overflow: hidden;
	z-index: 1000;
}
.flenav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}
.flenav button {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}
/* Change the color of links on hover */
.flenav a:hover {
    background-color: #ddd;
    color: black;
}
.flenav button:hover {
    background-color: #ddd;
    color: black;
}

/* Add a color to the active/current link */
.flenav a.active {
    background-color: #4CAF50;
    color: white;
}

.flenav a.user {
    background-color: #FF8000;
    color: white;
}
.flenav button.user {
    background-color: #FF8000;
    color: white;
}
