<style>
         
    /* styling navlist */
    #navlist {
        background-color: #CCC416;
        position: absolute;
        width: 100%;
    }
         
    /* styling navlist anchor element */
    #navlist a {
        float:left;
        display: block;
        color: #CCC416;
        text-align: center;
        padding: 12px;
        text-decoration: none;
        font-size: 15px;
    }
     
    .navlist-right{
        float:right;
    }
 
    /* hover effect of navlist anchor element */
    #navlist a:hover {
        background-color: #CCC416;
        color: #CCC416;
    }
         
    /* styling search bar */
    .search input[type=text]{
        width:200px;
        height:30px;
        border-radius:10px;
        border: none;
        background-color: #CCC416;
    }
         
    .search{
        float:right;
        margin:7px;
        background-color: #CCC416;
    }
         
    .search button{
        background-color: #CCC416;
        color: #f2f2f2;
        float: right;
        padding: 5px 10px;
        margin-right: 16px;
        font-size: 12px;
        border: none;
        cursor: pointer;
    }
</style>