﻿#wrap {
    width: 100%;
    height: 50px;
    padding-bottom: 10px;
    margin: 0; /* Ensures there is no space between sides of the screen and the menu */
    z-index: 1; /* Makes sure that your menu remains on top of other page elements */
    position: fixed;
    background-color: RoyalBlue;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: RoyalBlue; /* #333; */
    float: right;
}

li {
    float: right;
    border-right: 1px solid #bbb;
}

    li a {
        display: block;
        color: white;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
    }

        /* Change the link color to #111 (black) on hover */
        li a:hover {
            background-color: #111;
        }

#wrap li ul {
    margin: 0;
    padding: 0;
    display: none;
    position: relative;
    height: auto;
    width: auto; /* 8em; */
}

#wrap li:hover ul {
    margin: 0;
    padding: 0;
    position: absolute;
    display: block;
    background: grey;
    height: auto;
    width: auto;
    text-align: left;
}

    #wrap li:hover ul li {
        margin: 0;
        padding: 0;
        float: left;
    }
/*   #wrap li ul li a:hover {
       background-color: aqua;
      position:relative;
    } */

#wrap li ul li {
    clear: both;
    border-style: none;
    text-align: justify;
}

#wrap li li a {
    color: #fff;
    text-decoration: none;
    text-align: left;
    padding: 14px 16px;
    text-decoration: none;
}
