﻿
.menuDiv {
    position: sticky;
    top: 1px;
    z-index: 500;
   /* background: linear-gradient(white,#ff6a00);*/
    background: linear-gradient(to bottom, #f8e5cb 0%, #ff6a00 100%);
    width : calc( 100% - 1px );
    justify-content: center;
    align-content: center;
    vertical-align: central;
    border-radius: 10px;
    box-shadow: black 0px 0px 5px;
}
.NavBar {
    font-size: 15px;
    font-family: Cambria;
    font-weight: 800;
    border-radius: 10px;
    position: relative;
    z-index: 500;
}
    .NavBar ul ul {
        width: 100%;
        background: linear-gradient( white,#ff6a00);
        border-radius: 10px;
    }
    .NavBar ul li {
        min-width: 50px;
        padding: 0 0 0 10px;
        border-radius: 10px;
    }

        .NavBar ul li a {
            color: dimgray;
            min-width: 90px;
            margin: 4px 0 2px 0;
            padding: 7px 10px 7px 10px;
            border-radius: 10px;
            border: 2px solid transparent;
          
        }

            .NavBar ul li:hover {
           
                cursor: pointer;
            }

            .NavBar ul li a:hover {

                background: white;
                color: #ff6a00;
                cursor: pointer;
                border: 2px solid #ff6a00;
            }
           



        
    
   