/* Navigation */

#nav    {
    margin:0;
    margin-top:-1px;
    margin-left:5px;
    
    width: 200px; /*width of accordion menu*/
        
    float:left;
    
}

#nav .menuheader { /*CSS class for menu headers in general (expanding or not!)*/
    margin:0;
    margin-bottom:5px; /*bottom spacing between header and rest of content*/
                     
    
    
}

#nav .menuheader:hover{
    color:#cc2a09;
    cursor:pointer;
    
}
#nav .openheader{ /*CSS class to apply to expandable header when it's expanded*/
    margin:0;
    margin-bottom:10px;
    
    background-image:url(/graphics/h4.png);
    background-repeat:no-repeat;
}
#nav a {
    text-decoration:none;
    display:block;
}
#nav a:hover {
    color:#cc2a09;

}

#nav ul{ /*CSS for UL of each sub menu*/
    margin: 0;
    margin-bottom:5px; /*bottom spacing between each UL and rest of content*/
    margin-top:0px;  /*spacing between the ul (header) and the links*/
    
    padding: 0;
    
    list-style-type: none;
}

#nav ul li{
    margin-left:5px;
    padding-top:5px;
    padding-bottom: 5px; /*bottom spacing between menu items*/
    line-height:14px;
    font-size:12px;

}



#nav ul li a{
    margin-left:0px;
    /*custom bullet list image*/
    display: block;
    text-decoration: none;
    font-size:12px;
    color:#000000;
    line-height:16px;
}

#nav ul li a:hover{ /*hover state CSS*/
    background-repeat: repeat;
}

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


