/* Colors commented to show what they change */ 
#sidebar {
    flex: 0 0 250px;
    z-index: 1;  
    border-right: 3px solid #7D5130; /* border to right of menu */
    border-top: 3px solid #7D5130; /* border to ltop of menu */
    background-color: #8D6546;
} 


a.burger {
    font-size: 40px;
    padding-left: 4px;
    color: #000;
}


nav {
    font-size: 0.9em;
    line-height: 1em;
}


nav label {
    padding: 0.2em;
    margin-top: 0.2em;
    font-size: 3em;
    font-weight: 900;
    display: none;
}


nav #hamburger {
    display: none;
}


nav ul {
    margin: 0;
    padding: 0;
    color: #FFF;
}


nav li {
    margin-bottom: 0;
}


nav span, nav a {
    color: #FFF;
    display: block;
    line-height: 1em;                   
    width: 100%;
    height: 100%;
    font-family: Georgia, 'Times New Roman', Times, serif;
    padding: .6em .7em .6em 1.3em;
    border-bottom: 3px #7D5130 solid;
}

nav span {
    cursor: default;
}


nav li ul a, nav li ul span {
    border: none;
}


nav li:hover {
    background: #7D5130;
    position: relative;
}


nav > footer {
    color: #fff;
    bottom: 0;
    padding: .4em .7em .4em 1.3em;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.1em;
}


nav > ul ul { 
    display: none;
    background: #B8A68D; /* background color for sub menu */
}


nav li:hover>ul {        
    border: 4px #CCC5C1 solid; /* border for sub menu */
    display: block;
    position: absolute;
    left: 11.5em; /*sub menu distance from menu items */
    top: 3px;
    z-index: 1;
}


nav > ul ul li {
    border: none;
    float: left;
    width: 14em; /* sub menu width */
}
