/* Tabbed sub-navigation */

#nav {
    width: 100%;
    border-top: 1px solid #000;
    display: block;
    margin-bottom: 35px;
    clear: both;
}

#nav a {
    float: left;
    font-weight: bold;
    font-size: 80%;
    text-decoration: none;
    background: #eee;
    margin-right: 5px;
    padding: 5px;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

#nav a.active {
    background: #ddd;
}

#nav a:hover {
    background: #ddd;
}

