/*==================================================*/
/*                                                  */
/*        The Project Sousa MENUS Style Sheet       */
/*                                                  */
/*        Copyright © 2005 by David P. Miller       */
/*                                                  */
/*==================================================*/


/*==================================================*/
/*                                                  */
/*                  CSS Navbar List                 */
/*                   adapted from                   */
/*      http://css.maxdesign.com.au/listamatic/     */
/*                                                  */
/*==================================================*/

/* =============== FLOAT BUTTONS ================== */
#floatButton
    {
    background-color: #fa5;
    border: solid #811 2px;
    text-align: center;
    position: absolute;
    padding: .5em 0 .4em 0;    
    }

#floatButton a
    {
    color: #811;
    text-decoration: none;
    padding: .5em 1em .5em 1em;
    }
    
#floatButton a:Hover
    {
    color: #fff;
    background-color: #811;
    font-weight: bold;
    }    


/* ==============HORIZONTAL NAVBAR================= */

#navcontainer
    {
    height: 35px;
    background-color: #800000;
    }

#navcontainer ul
    {
    padding: 0;
    margin-left: 10px;
    text-color: White;
    float: left;
    width: 105%;
    font-weight: bolder;
    font-family: arial, helvetica, sans-serif;
    font-size: 14px;
    line-height: 18px;
    }

#navcontainer ul li { display: inline; }

#navcontainer ul li a
    {
    padding: 0.4em;
    display: block;
    background-color: #800000;
    color: yellow;
    text-decoration: none;
    float: left;
    border-width: 2px;
    border-color: #ff0 #a60 #a60 #ff0;
    border-style: solid;
    position: relative;
    right: 0px;
    top: 0px;
    }

#navcontainer ul li a:hover
    {
    background-color: #B44;
    color: #FF8;
    position: relative;
    right: 1px;
    down: 1px;
    /*  added for 3-d  */
    border-color: #a60 #ff0 #ff0 #a60;
    }


/* ==================VERTICAL NAVBAR================= */

#navcontainer2
    {
    width: 120px;
    position: absolute;
    top: 0;
    left: 0;
    }

#navcontainer2 ul
    {
    padding: 0 0 0 0.5em;
    display: inline;
    margin: 0;
    background-color: #063;
    color: White;
    float: left;
    font-family: arial, helvetica, sans-serif;
    font-size: 14px;
    text-align: center;
    }

/* to stretch the container div to contain floated list */
#navcontainer2:after
    {
    content: ".";
    display: block;
    line-height: 1px;
    font-size: 1px;
    clear: both;
    }

#navlist2 ul
    {
    text-align: left;
    list-style: none;
    }

#navcontainer2 ul li 
    { 
    display: block;
    margin: 0;
    clear: both;
    padding: 0.1em 0.5em 0.1em 0.5em; 
    text-align: center;
    text-decoration: none;
    list-style-type: none;
    }

#navcontainer2 ul li a
    {
    display: block;
    width: 120px;
    padding: 0.2em 0 0.2em 0;
    background-color: #3a4;
    color: White;
    text-decoration: none;
    float: left;
    border-width: 2px;
    border-color: #ffe #44ab44 #444 #fff;
    border-style: solid;
    position: relative;
    right: 0px;
    }

#navcontainer2 ul li a:hover
    {
    background-color: #084;
    position: +1px;
    color: yellow;
    position: relative;
    right: 1px;
    /*  added for 3-d  */
    border-color: #0a0 #eee #eee #000;
    }

/* ============END VERTICAL NAVBAR============== */

