
/* position and dimensions of the navigator */
.navi {
    width: 200px;
    height: 20px;
}

.navi_wrapper {
    color: black;
    border: 1px solid #ccc;
    background-color: white;
    height: 36px;
    width: 748px;
}

.navi_table {
    margin-left: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    margin-right: 0px;
    width: 100%;
}

.navi_title {
    float: left;
    font-size: medium;
    font-family: sans-serif;
    font-weight: bold;
    padding-top: 5px;
    width: 300px;
}

/* items inside navigator */
.navi a {
    width: 8px;
    height: 8px;
    float: left;
    margin: 3px;
    background: url(../img/scrollable/arrow/navigator.png) 0 0 no-repeat;
    display: block;
    font-size: 1px;
}

/* mouseover state */
.navi a:hover {
    background-position: 0 -8px;
}

/* active state (current page state) */
.navi a.active {
    background-position: 0 -16px;
}
