.dropbtn {
    background-color: #4CAF50;
    color: white;
    padding: -20px;				/* 16px */
    font-size: 16px;
    border: none;
    cursor: pointer;
		

}

.dropdown {
    position: relative;
    display: inline;

}

.dropdown-content {
    display: none;
    position: absolute;
	
    background-color:  #2e2e2f;
    /*min-width: 70px;*/
	font-family: myGillFont, sans-serif;
	font-size:11px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	/*top:49px;*/
	top:0px;
	
	left:0px;

}

.dropdown-content a {
	width:70px;			/* controls width of block link */
	line-height: 48px; /* controls height of block link*/
    color: black;
    /*padding: 12px 5px;*/
    text-decoration: none;
    display: inline;
	
	/*height:50px;*/
	
/*height:40%;*/

}

.dropdown-content a:hover {
	
	background-color: #f1f1f1;	 

}

.dropdown:hover .dropdown-content {
	
    display: inline; 
}

.dropdown:hover .dropbtn {
    background-color: #3e8e41;
}


/* Hack for Microsoft Edge */
_:-ms-lang(x), _:-webkit-full-screen, .dropdown-content { 


		top:87px;
	}

/* Hack for Firefox */
_:-moz-tree-row(hover), .dropdown-content { 

		top:15px; 

		
}


