.main_buttons{
background-color: rgb(0, 112, 192);
    border: none;
    color: white;
    padding: 10px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
	width: 200px;
}
.Content_buttons{
	background-color: fuchsia;
    border: none;
    color: white;
    padding: 10px 5px;
    text-align: left;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
	width: 400px;
}
.Content_buttons:hover{
background-color: rgb(0, 112, 192);
}

.dropbtn {
   background-color: rgb(0, 112, 192);
    border: none;
    color: white;
    padding: 10px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
	width: 200px;
}

.dropbtn:hover, .dropbtn:focus {
    background-color: rgb(0, 112, 192);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: fuchsia;
    min-width: 160px;
    overflow: auto;
    z-index: 1;
}


.dropdown-content:hover,.dropdown-content:focus{
	background-color: fuchsia;
}

.dropdown a:hover {background-color: rgb(0, 112, 192);}

.show {display:block;}