#navbar
{
    position : absolute ;
     left : 250px ;
     top : 275px ;
     width : 710px ;
     
    font-size : 1.1em ;
    
    font-family : sans-serif ;
    border-top : 2px solid #100606 ;
    border-bottom : 2px solid #090707 ;

    z-index : 10 ;
}

#navbar a
{
    font-family : sans-serif ;
    text-decoration : none ;
}

    #navbar a:before
    {
        content : "" ;
    }
    
    #navbar a:after
    {
        content : "" ;
    }

    #navbar a.active{
        background-color : #000 ;
        color : #FB6 ;
    }

#navbar ul
{
    float : left ;
    margin : 0px ;
    position : relative  ;
}

#navbar ul li
{
    float : left ;
    list-style : none ;
    position : relative ;
	margin : 0 ;
}


#navbar ul li ul
{
    display : none ;
    position : absolute ;
     top : 99% ;
     left : 0em ;
     
    background-color : #000 ;
    font-size : .85em ;
    
    padding-top : 2px ;
    padding-bottom : 3px ;
    
}

    #navbar ul li:hover ul
    {
        display : block ;
    }

#navbar ul li ul li
{
    float : none ;
    position : relative ;
    display : block ;
}






#navbar ul li a
{
    display : block ;
    padding : .5em 1.5em .5em .5em ;
    font-weight : 900 ;
    color : #FFF ;
}

#navbar ul li:hover 
{
    background-color : #000 ;
}

    #navbar a:hover
    {
        text-decoration : none ;
        background-color : transparent ;
    }
    
    #navbar ul li ul li 
    {
        font-weight : normal !important ;
        margin-left : -2em ;
        white-space : nowrap ;
    }

    #navbar ul li ul li:hover
    {
        background-color : #444 ;
    }

    #navbar ul li ul li a
    {
        font-weight : normal ;
        display : block ;
        height : 100% ;
        padding-top : 2px ;
        padding-bottom : 2px ;
        font-family : sans-serif ;
        font-size : small ;
    }
/*    
    #navbar ul li ul li a:hover
    {
        text-decoration : underline ;
    }
