@charset "UTF-8";
.dropdown {
	font-size: 15px;
	margin: 0px;
	margin-top: -20px;
	padding-left: 0px;
	padding-right: 0px;
    /*min-width: 100%;  Set width of the dropdown */
    /*background: #f2f2f2;*/
	/*border-style: solid;
	border-width: 1px;
	border-color: #939393;*/
    display: none;
    position: fixed;
    z-index: 999999;
	
	min-width: 240px;
    height: auto;
    overflow: visible;
    background-color: #ECECEC;
    box-shadow: 1px 3px 6px rgb(0 0 0 / 10%);
}
.dropdown a:link { color: #435363; text-decoration: none;}
.dropdown a:visited { color: #435363; }
.dropdown a:hover { color: #C00000; }
.dropdown a:active { color: #435363; }
.dropdown a { margin-left: 0px; }

.Nav-item:hover .dropdown{
    display: block;	/* Display the dropdown */
}
.dropdownlist{
	display: block;
	margin: 0px;
	padding: 0px;
}
.dropdownitem{
	display: block;
	padding: 12px 12px;
	border-top: 1px solid #939393;
}
.dropdownitem::before {
  /*content: '\00BB';*/
  content: '';
  position: relative;
  left: 0;
}

.dropdown .is-first {
	border-top: 0px solid #939393;
}