.navbar {
    overflow: hidden;
    background: url("http://flyskyhy.com/files/theme/navigationbg.jpg") top repeat-x;
    color: white;
    height: 47px;
}

.navbar a {
    font-size: 14px;
    color: inherit;
    text-align: center;
    text-decoration: none;
    height: 38px;
    line-height: 38px;
    padding: 0px 18px;
    display: block;
}

.navbarItem {
    float: left;
    display: block;
    overflow: hidden;
}

.navbarItem:hover, .navbarItem#active {
    color: #0c1b2c;
    background-color: #6a95c7;
}

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

.dropdown-content a {
    float: none;
    color: black;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

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

