@charset "UTF-8";
/* Dropdown Button */
.dropbtn {

    color: #FFF;
    padding: 0px 130px 0px 0px;
    border-bottom: 0px #006;
    border-top: 0px #006;
	border-left: 0px #006;
	border-right: 0px #006;
    text-decoration: none;
	height: 60px;
	width: 100%;
	background-color: #006;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #006;
    min-width: 500px;
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: #FFF;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #909}

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

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: #909;
}

