
#add-new-other {
    font-size: 1em;
    width: 160px;
    display: inline-block;
}
 
.nav-disabled {
    opacity: 0.6;
    pointer-events: none;
    cursor: pointer;
}
   
nav {
	
}

nav ul {
	padding: 0;
    margin: 0;
	list-style: none;
	position: relative;
}
	
nav ul li {
	display: inline-block;
	border: aliceblue;
	background: #0077c8;
	padding: .4em 1em;
	z-index: 1000;
	font-weight:lighter !important;
	}

nav a {
	display: block;
	padding: 0 10px;
	color: #FFF;
	text-decoration: none;
	color: white !important;
	letter-spacing: -1px;
	text-shadow: none;
}

nav a:hover { 
	background-color: rgba(255, 255, 255, 0.5);
}

/* Hide Dropdowns by Default */
nav ul ul {
	display: none;
	position: absolute; 
	top: 29px; /* the height of the main nav */
}
	
/* Display Dropdowns on Hover */
nav ul li:hover > ul {
	display: inherit;
}
	
/* Fisrt Tier Dropdown */
nav ul ul li {
	width: 200px;
	float: none;
	display: list-item;
	position: relative;
}

/* Second, Third and more Tiers	*/
nav ul ul ul li {
	position: relative;
	top: -60px; 
	left: 160px;
}

/* Change this in order to change the Dropdown symbol */
nav li > a:after { content:  ' ↓'; }
nav li > a:only-child:after { content: ''; }

/* fixed a very light dropdown and its font-weight, 4/22/25 */