// This provides the tabs on the home page
// http://tutorials.mezane.org/tabbed-navigation-using-css

ol#toc {
    height: 2.0em;
    list-style: none;
    margin: 0;
    padding: 0;
    color: #fff;
}

ol#toc li {
    float: left;
    list-style: none;
    margin: 0 1px 0 0;

}

ol#toc a {
    background: #bdf url(../images/tabs_grey.png);
    display: block;
    float: left;
    height: 2.0em;
    padding-left: 10px;
    text-decoration: none;
    background-color: #fff;
}

ol#toc a:hover {
    background-color: #fff;
    background-position: 0 -120px;
    color: #000;
}

ol#toc a:hover span {
    background-position: 100% -120px;
    color: #fff;
}

ol#toc li.current a {
    background-color: #fff;
    background-position: 0 -60px;
    color: #000;
    font-weight: none;
}

ol#toc li.current span {
    background-position: 100% -60px;
    color: #000;
}

ol#toc span {
    background: url(../images/tabs_grey.png) 100% 0;
    display: block;
    line-height: 2em;
    padding-right: 10px;
    color: #fff;
    background-color: #fff;
}

div.content {
    clear: left;
    padding: 1em;
    background: #eee;
}


