/*File: bannernav.css
Created By: Seamus P. H. Leahy

This is the stylesheet for the Horizontal Menu Bar.
*/
#bannernav{
    white-space : nowrap;
    background-color : maroon;
    float : left;
    color : wheat;
    font-family : arial;
    width : 100%;
    border-style : solid; 
    border-color : black;
    border-width : 2px 2px 2px 2px; 
    font-size: 13px;
 } 
 #bannernav ul{
    padding : 0;
    margin : 0;
    float : center;
 }
 #bannernav ul li{
    display : inline;
 }
 #bannernav ul li a{
    padding-left : 1em;
    padding-right : 1em;
    background-color : maroon;
    color : wheat;
    text-decoration : none;
    float : left;
    border-right-color : black;
    border-right-style : solid;
    border-right-width : 1px;
 }
 #bannernav ul li a:hover{
    background-color : wheat;
    color : maroon;
 }
 
