@charset "utf-8";
/* CSS Document */
.menu {
	background-color:white;
	color:#333;
    padding: 5px 0;
	float:right;
	font-size:0.8em;
}
.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;
}

.menuitemdrop:after{
   content: ""; /* Empty content for a CSS-drawn shape */
  display: inline-block; /* Essential for sizing and positioning */
  width: 0;
  height: 0;
  border-left: 5px solid transparent; /* Left side of the arrow */
  border-right: 5px solid transparent; /* Right side of the arrow */
  border-top: 5px solid #333; /* Base of the arrow (color) */
  margin-left: 5px; /* Adjust as needed */
}
.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;
}
