.topnav {
   overflow: hidden; 
   border-bottom:1px solid #ccc;  
   margin:0 auto;    
}
/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    display: block;
    color:#016701;
    text-align: center;
    padding:16px 12px 12px 11px;
    text-decoration: none;
    font-size: 14px;  
    font-weight:600; 
    border-right:1px solid #ccc; 
    text-transform:uppercase;
    /*letter-spacing:1px;*/
    background:-moz-linear-gradient(#fff, #efefef);
	 background:-ms-linear-gradient(#fff, #efefef);
	 background:-o-linear-gradient(#fff, #efefef);
	 background:linear-gradient(#fff, #efefef);
	 background:-webkit-gradient(linear, 0% 0%, 0% 100%, from(#fff), to(#efefef));
	 background:-webkit-linear-gradient(#fff, #efefef);
}
.topnav .last {
	border-right: none!important;
}

.topnav a:hover{
	background:#01ba01!important;
	color:#f9d905!important;
}
/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {display: none;}
/* Dropdown container - needed to position the dropdown content */
.dropdown {
    float: left;
    overflow: hidden;
}
/* Style the dropdown button to fit inside the topnav */
.dropdown .dropbtn {
   font-size: 14px; 
   border: none;
   outline: none;
   color: #016701;
   font-weight:600;
   padding:15px 15px 11px 13px;
    border-right:1px solid #ddd; 
    text-transform:uppercase;
   background:-moz-linear-gradient(#fff, #efefef);
	background:-ms-linear-gradient(#fff, #efefef);
	background:-o-linear-gradient(#fff, #efefef);
	background:linear-gradient(#fff, #efefef);
	background:-webkit-gradient(linear, 0% 0%, 0% 100%, from(#fff), to(#efefef));
	background:-webkit-linear-gradient(#fff, #efefef);
    font-family: inherit;
    margin: 0;
}
/* Style the dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
/* Style the links inside the dropdown */
.dropdown-content a {
    float: none;
    color:#016701;
    text-align: center;
    padding:16px 15px 12px 14px;
    text-decoration: none;
    font-size: 14px;  
    font-weight:600; 
    border-right:1px solid #ccc; 
    text-transform:uppercase;
    background:-moz-linear-gradient(#fff, #efefef);
	background:-ms-linear-gradient(#fff, #efefef);
	background:-o-linear-gradient(#fff, #efefef);
	background:linear-gradient(#fff, #efefef);
	background:-webkit-gradient(linear, 0% 0%, 0% 100%, from(#fff), to(#efefef));
	background:-webkit-linear-gradient(#fff, #efefef);
}

/* Add a dark background on topnav links and the dropdown button on hover */
.topnav a:hover, .dropdown:hover .dropbtn {
    background-color: #555;
    color: white;
}
/* Add a grey background to dropdown links on hover */
.dropdown-content a:hover {
    background-color: #ddd;
    color: black;
}
/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown:hover .dropdown-content {display: block;}

