nav.section .navmenu{
padding-top: .5em;
width: 198px; /*width of accordion menu*/
}

nav.section .navmenu h1.menuheader { /*CSS class for menu headers in general (expanding or not!)*/
font-size: 110%;
color: white;
background:  navy;
margin-bottom: 5px; /*bottom spacing between header and rest of content*/
/* text-transform: uppercase; */
padding: 6px 0 6px 10px; /*header text is indented 10px*/
cursor: pointer;
}

nav.section .navmenu h2.menuheader {
font-size: 105%;
font-style: italic;
color: white;
background: navy;
margin-bottom: 5px; /*bottom spacing between header and rest of content*/
margin-left: 10px;
/* text-transform: uppercase; */
padding: 6px 0 6px 10px; /*header text is indented 10px*/
cursor: pointer;
}

nav.section .navmenu h3.menuheader {
font-size: 100%;
color: white;
background: navy;
margin-bottom: 5px; /*bottom spacing between header and rest of content*/
margin-left: 20px;
/* text-transform: uppercase; */
padding: 6px 0 6px 10px; /*header text is indented 10px*/
cursor: pointer;
}

nav.section .navmenu .menuheader a {color: white; font-weight: normal;}
nav.section .navmenu .menuheader a:hover {color: yellow;}

nav.section .navmenu h1.openheader{ /*CSS class to apply to expandable header when it's expanded*/
    background: #0066cc;
}

nav.section .navmenu h2.openheader{ /*CSS class to apply to expandable header when it's expanded*/
    background: #0066cc;
}

nav.section .navmenu h3.openheader{ /*CSS class to apply to expandable header when it's expanded*/
    background: #0066cc;
}

nav.section .navmenu ul{ /*CSS for UL of each sub menu*/
list-style-type: none;
margin: 0;
padding: 0;
margin-bottom: 8px; /*bottom spacing between each UL and rest of content*/
}

nav.section .navmenu ul li{
padding-bottom: 2px; /*bottom spacing between menu items*/
}

nav.section .navmenu ul li .opensubheader{ /*Open state CSS for sub menu header*/
background: lightblue !important;
}

nav.section .navmenu ul li .closedsubheader{ /*Closed state CSS for sub menu header*/
background: lightgreen !important;
}

nav.section .navmenu ul li a{
color: #navy;
/* background: url(arrowbullet.png) no-repeat center left; */ /*custom bullet list image*/
display: block;
padding: 2px 0;
margin-left: 20px;
padding-left: 5px;
text-decoration: none;
font-weight: bold;
border-bottom: 1px solid white;
}

nav.section .navmenu ul li a.noul { border: none; padding-bottom: 5px;}

nav.section .navmenu ul li a:visited{
font-weight: normal;
}

nav.section .navmenu ul li a:hover{ /*hover state CSS*/
color: yellow; 
}

nav.section .navmenu ul li a.subexpandable:hover{ /*hover state CSS for sub menu header*/
background: lightblue;
}