/* Dropdown Button */
.dropbtn {
	background-color: #fff;
	margin: 0 1em 0.25em 0.5em;
    padding: 0;
    border: 0;
    cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
	top: -1em;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropcontent {
    display: none;
    position: absolute;
	left: 1em;
    background-color: #f9f9f9;
    min-width: 20em;
    z-index: 1;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

/* Links inside the dropdown */
.dropcontent p, .dropcontent a { 
	font-size: 1.3em;
	color: #222;
	line-height: 1.1em;
}

.dropcontent p {
	margin: 0.5em 0 0.25em 0;
	padding: 0.25em;
	font-weight: bold;
	color: #fff;
	background-color: #369;
}

.dropcontent a {
    color: #333;
    padding: 0.5em;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropcontent a:hover {
	color: #900;
	background-color: #f1f1f1
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropcontent {
    display: block;
}