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

/* The Table of Contents container element */
.tocify {
    position: -webkit-sticky;
    position: sticky;
    top: 80px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    border-radius:20px;
    padding:15px;
    margin-top:20px;
    margin-bottom: 30px;
}

/* 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. */
.tocify ul, .tocify li {
    list-style: none;
    margin: 0;
    padding: 0;
    border: none;
    line-height: 30px;
    width:100%;
}

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

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

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

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

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

.tocify .nav-list > li > a, .tocify .nav-list > ul > a {
    width: 100%;
    display: block;
}
/* Twitter Bootstrap Override Style */
.tocify .nav-list > li > a, .tocify .nav-list .nav-header {
    margin: 0px;
    
}

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

    .tocify .nav-list > li > a:hover {
        background-color: #eeeeee;
    }

    .tocify .nav-list > .active > a, .tocify .nav-list > .active > a:hover, .tocify .nav-list > .active > a:focus {
        color: #ffffff;
        text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
        background-color: #0088cc;
    }
