@charset "utf-8";

/* CSS Document */
	/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/simple_vertical.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
#menu-container {
	display: flex !important;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
}
#menu-container ul {
	cursor: pointer;
	padding: 0;
	justify-items: center;
	height: 30px;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	margin: 0;
}
#menu-right {
	flex-direction: row-reverse;
}
#menu-container li {
	position: relative;
	display: block;
	padding: 10px;

	justify-content: start;
}
#menu-container li:hover {
	background: #FF9900;
}
#menu-container li span {
	color: white !important;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
#menu-container li ul {
	display: none;
	position: absolute;
	height: fit-content;
	flex-direction: column;
	top: 30px;
	left: 0;
	margin: 0;
	padding: 0;
}

#menu-container li:hover ul {
	display: flex;
}
#menu-container li > ul li {
	background-color: grey;
}