/* CSS Document Master template*/

div.background {
    margin-top: 0px;
    margin-bottom: 0px;
    width:100%;
    margin-top: 8px;
    position:absolute;
    top:0;
    left:0;
 }

div.transbox {
    margin-top: 0px;
    margin-bottom: 0px;
    background-color: #9c9940;
    position: relative;
    border: 1px solid #9c9940;
    opacity: 0.6;
    filter: alpha(opacity=60); /* For IE8 and earlier */

}

div.transbox p {
    margin: 2%;
    font-weight: bold;
    color: #000000;
}



.normal {
    background-color: #9c9940;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
   }

.normal a {
    color: white;
    text-decoration: none;
    display: block;
}

.normal:hover  {
    background-color: #14251b;
}

.dropbtn {
    background-color: #9c9940;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
   
}

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

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #9c9940;
    min-width: 230px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 8px 8px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {background-color: #9c9940}

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

.dropdown:hover .dropbtn {
    background-color: #9c9940;
}
