/* navigation bar for bnb */

table .bnb_navbar {
    height: 70px;
}

.bnb_navbar {

    margin-top: 12px;

    border-collapse: separate;
    border-spacing: 0;

    font-weight: bold;

    background-color: #f2f2f2

}

.bnb_navbar, .bnb_navbar td {
    border: 1px solid gray;
    border-radius: 5px;
    -moz-border-radius: 5px;
    padding: 2px;
}

/* fixed width */
/*
.bnb_navar td {
    width: 100px !important; 
} */

.bnb_navbar a {
    float: left;
    display: block;
    color: black; /* #f2f2f2; */
    text-align: center;
    padding: 10px 10px;
    text-decoration: none;
}

.bnb_navbar a:hover {
    background-color: #ddd;
    color: black;
}

.bnb_navbar a.active {
    background-color: #04AA6D;
    color: white;
}

/* class if this page is selected */
.bnb_active {
    background-color: lightskyblue;
}