/*  Navigation menu definitions  */
ul#navlist 
{
    list-style: none;
    margin: 0px;
    padding: 0px;
    white-space: nowrap;
}

ul#navlist > li 
{

	display: inline-block;
    font-size: 1.0em;
    width: auto;

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;

    background-color: gray;/*#333;*/
    
    color: white;
    height: 35px;
    padding: 10px 15px 8px 15px;
    font-weight: bold;

}

ul#navlist > li.active
{
    /*
    background-image: url( "../images/bgBreadcrumbNavActive.png" );
    */
    
    background-color: #a0bf2a;/*#08c;*/
   
}
ul#navlist > li.inactive
{
    /* background-image: url( "../images/bgBreadcrumbNavInactive.png" ); */
    background-color: gray;/*#555;*/
}
ul#navlist > li:first-child
{
    background-position: right;
}

#curnavlink 
{
	color: #0083bf;
}

#navlist li a 
{
    text-decoration: none;
    color: white;
}
#navlist li a:hover
{
    text-decoration: underline;
}
