/* Dropdown Button */
.dropbtn {
    border: none;
    cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 90px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 111;
	text-align: left;
	width: max-content;
}

/* Links inside the dropdown */
.dropdown-content a, .dropdown-content a:visited {
    padding: 6px 6px;
    text-decoration: none;
    display: block;
    color: #2570ba;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
	background: rgba(230, 230, 230, 1);
/* 	background-color: #f1f1f1; */
	border-right: solid 5px #2570ba;
/* 	font-size: larger; */
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
	display:block;
}

.topBorder {
	border-top: solid 1px #aa332f;
}