/* Morpheus - menu base (flex handled in style.css) */
.ddsmoothmenu {
	font: 13px 'Roboto', Tahoma, Arial;
	background: transparent;
	width: 100%;
}
.ddsmoothmenu ul {
	z-index: 100;
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.ddsmoothmenu ul li {
	position: relative;
	display: inline-block;
	float: none;
}
.ddsmoothmenu ul li a {
	display: block;
	color: #d0d0d8;
	padding: 14px 16px;
	text-decoration: none;
}
.ddsmoothmenu ul li a:link,
.ddsmoothmenu ul li a:visited { color: #d0d0d8; }
.ddsmoothmenu ul li a.selected {
	color: #e8c547 !important;
	background: rgba(201, 162, 39, 0.1);
}
.ddsmoothmenu ul li a:hover {
	color: #e8c547 !important;
	background: rgba(201, 162, 39, 0.08);
}
.ddsmoothmenu ul li ul {
	position: absolute;
	left: 0;
	display: none;
	visibility: hidden;
	background: #12121c;
	border: 1px solid rgba(201,162,39,0.3);
	border-radius: 8px;
	z-index: 2000;
}
.ddsmoothmenu ul li ul li {
	display: list-item;
	float: none;
}
.ddsmoothmenu ul li ul li ul {
	top: 0;
}
.ddsmoothmenu ul li ul a {
	width: auto;
	min-width: 160px;
	padding: 10px 16px;
}
* html .ddsmoothmenu { height: 1%; }
.downarrowclass, .rightarrowclass { display: none; }
