.dropbtn {
    font-size: 10px;
	font-weight:bold;
	height:25px;
	width:25px;
    border: none;
    cursor: pointer;
	border-radius:15px;
    background-color: #00bffe;
	border:1px solid transparent;
	color:white;
}



.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    min-width: 140px;
	border-radius: 5px;
	padding:5px 5px 0 5px;
	border:1px solid #989898;
	font-size:16px;
	color: #565656; 
	z-index:10000;
}

.dropdown-content div {
    text-decoration: none;
    display: block;
	background:transparent;
	padding:0 0 5px 0;
	cursor:pointer;
	text-align:left;
}

.dropdown-content a {
	text-decoration:none;
	font-size:16px;
	color: #565656; 
}

.dropdown-content hr {
	border:0;
	height:1px;
	background:#DBDBCE;
	margin:0 0 5px 0;
	padding:0;
}

.dropdown-content div:hover, .dropdown-content a:hover {
	color: #00bffe;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: white;
    color: #00bffe;
	border:1px solid #00bffe;
}