nav {
    /* margin: 50px 0; */
}

nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    text-align: right;
}

nav ul li {
    display: inline-block;
}

nav a {
    display: block;
    padding: 0 10px;

    /* font-size:20px; */
    line-height: 50px;
    text-decoration: none;
}

nav a:hover {
    color: #000000;
    background-color: #c8b066;
}

/* Hide Dropdowns by Default */
nav ul ul {
    display: none;
    border: 1px #CCC solid;
    position: absolute;
    top: 50px;

    /* the height of the main nav */
    z-index: 100;
}

/* Display Dropdowns on Hover */
nav ul li:hover > ul {
    display: inherit;
}

/* Fisrt Tier Dropdown */
nav ul ul li {
    width: 170px;
    float: none;
    display: list-item;
    position: relative;
}

/* Second, Third and more Tiers */
nav ul ul ul li {
    position: relative;
    top: -50px;
    left: 170px;
}

/* Change this in order to change the Dropdown symbol */
/* li > a:after { content:  ' +'; }
li > a:only-child:after { content: ''; } */
