/* Dropdown Button */
.dropbtn {
    background-color: #606060;
    color: white;
    padding: 6px;
    font-size: 16px;
    border: #c0c0c0 2px solid;
    cursor: pointer;
        	font-family: Josefin Sans, Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 24pt;
	letter-spacing: 2px;
	font-weight: bold;
	font-variant:small-caps;
	text-align:center;
	width: 170px;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
    background-color: #b7ce88;
    color: #606060;
        border: #606060 2px solid;

}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
    float: left;
    margin: 10px;

    z-index: 1000;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: transparent;
    width: 150px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
	margin-top: 10px;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: #ffffff;
    padding: 6px;
    text-decoration: none;
    display: block;
    background-color: #606060;
        	font-family: Josefin Sans, Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 14pt;
	font-weight: bold;
	letter-spacing: 2px;
	font-variant: small-caps;
	border: 2px solid #c0c0c0;

}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
	background-color: #b7ce88;
	color: #606060;
	        border: #606060 2px solid;

}

/* 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;}

.spacer {
	height: 4px;
	background-color: transparent;
}