/* Style The Dropdown Button */
.dropbtn {
    padding: 16px;
    font-size: 16px;
    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-menu {
    display: none;
    position: absolute;
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(121, 167, 208, 0.7);
}

/* Links inside the dropdown */
.dropdown-menu li a {
    color: black;
    text-decoration: none;
    display: block;
	line-height: 1.42857;
    padding: 3px 20px;
    white-space: nowrap;
	clear:both;
}

/* Change color of dropdown links on hover */
/*.dropdown-menu a:hover {background-color: #f1f1f1}*/

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
	color:#ffeb90;
}
