@charset "utf-8";
/* CSS Document */
.menu {
	background-color:white;
	color:#333;
    padding: 5px 0;
	float:right;
	font-size:1em;
}
.menu a {
	text-decoration:none;
	color:#333;
}
.menu a:hover {
	color:orange;
}


.menuheader {
	display: flex;
    justify-content: space-between;
    list-style-type: none;
	position:relative;
}

.menuitem {
    padding: 1px 4px;
	border: 1px solid transparent;
}
.menuhighlight {
	border: 1px solid white;
}

.menuitem:hover .hsubmenu {
	display:block;
}

.hsubmenu {
	font-size: 0.9em;
    display: none;
    top: 25px;
    min-width: 250px;
    background-color: #edf6f4;
    padding: 4px;
    border: 1px solid grey;
    border-radius: 3px;
    z-index: 2000;
    color: black;
	position:absolute;
	
	
}

.hsubmitem:hover {
	text-decoration:underline;
}
