.dropbtn {    
    height: 29px;
    width: 100%;
/*    overflow: hidden;*/
    background-color: #000000; /* 173766 */
}  
.dropdown {
    margin: 0;
    font-size: 13px;
    height: 32px;
	width: 220px;
    position: relative;
    display: inline-block;
}  
.dropdown-content {
    margin: 0;
    display: none;
    position: absolute;
    background-color: #ffffff; /* fafafa */
/*   border-left: 4px solid #009879;*/
    font-weight: none;  /*none bold*/
    min-width: 179px; /*177px*/
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1; 
    border-radius: 0px 0px 0px 0px;
}  
.dropdown-content a {
    color: black;
    padding: 10px 8px 12px 10px;  /* 10px 14px; */
    width: 260px;
    text-decoration: none;
    font-size: 13px;
    display: block;
    height: 15px;
    background-color: #ffffff;
    border-left: 3px solid #1abc9c;
    border-right: 0px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6; /* d9d9d9 */
 /*   border-bottom: black 1px dotted; */    
} 
.dropdown-content a:hover {
    background-color: #e6e6e6;
}

.dropdown-content a:first-child {
/*    border-radius: 10px 10px 0px 0px; */
}

.dropdown-content a:nth-of-type(even) {
    background-color: #f6f6f6;
}

.dropdown-content a:nth-of-type(even):hover {
    background-color: #e6e6e6;
}

.dropdown:hover .dropdown-content {
      display: block;
  }  
