@charset "UTF-8";
/* CSS Document */

.MainTitle {
	float:left;
}

.ddcontainer {
    overflow: hidden;
	float: none;
	padding-top: 40px;
}

.ddcontainer a {
    float: left;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.dropdown {
    float: right;
    min-width: 160px;
    overflow: hidden;
}

.dropdown .menu_icon {
    cursor: pointer;
    border: none;
    outline: none;
	margin-right: 5px;
    height: 21px;
	width: 21px;
	text-align: right;
    float: right;
}

.dropdown .dropbtn {
    cursor: pointer;    
    border: none;
    outline: none;
    color: #33CCCC;
    padding: 5px 5px;
    background-color: inherit;
}

.ddcontainer a:hover, .dropdown:hover .dropbtn {
    background-color: #444444;
}

.dropdown-content {
    display: none;
    position: absolute;
    margin-top: 21px;
    float: right;
    color: #777777;
	background-color: #303030;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: #7F7F7F;
	padding: 2px 5px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    color: #33CCCC;
	background-color: #5F5F5F;
}

.show {
    display: block;
}