/*
 * jquery.tocify.css 1.3.0
 * Author: @gregfranko
 */

/* The Table of Contents container element */
#toc {
    width: 20%;
    max-height: 80%;
    overflow: auto;
    margin-left: 0%;
    position: fixed;
    border: 1px solid #ccc;
    moz-border-radius: 6px;
    border-radius: 6px;
}

/* Style for toc scrollbar */
#toc::-webkit-scrollbar {
    width: 8px;
}
 
#toc::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 4px rgba(0,0,0,0.3); 
    border-radius: 6px;
}
 
#toc::-webkit-scrollbar-thumb {
    border-radius: 6px;
    -webkit-box-shadow: inset 0 0 4px rgba(0,0,0,0.5); 
}

/* The Table of Contents is composed of multiple nested unordered lists.  These styles remove the default styling of an unordered list because it is ugly. */
#toc ul, #toc li {
    list-style: none;
    margin: 0;
    padding: 0;
    border: none;
    line-height: 30px;
}

/* Top level header elements */
.header {
    text-indent: 10px;
}

/* Top level subheader elements.  These are the first nested items underneath a header element. */
.sub-header {
    text-indent: 20px;
    display: none;
}

/* Makes the font smaller for all subheader elements. */
.sub-header li {
    font-size: 12px;
}

/* Further indents second level subheader elements. */
.sub-header .sub-header {
    text-indent: 30px;
}

/* Further indents third level subheader elements. You can continue this pattern if you have more nested elements. */
.sub-header .sub-header .sub-header {
    text-indent: 40px;
}

/* Twitter Bootstrap Override Style */
.nav-list > li > a, .nav-list .nav-header {
    margin: 0px;
}

/* Twitter Bootstrap Override Style */
.nav-list > li > a {
    padding: 5px;
}