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

/* The Table of Contents container element */
.tocify {
    max-height: 80%;
    overflow: auto;
    position: fixed;
    /*border-radius: 6px;*/
    max-width: 280px;
    min-width: 280px;
}
  
    /* 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;

        clear: both;
        display: block;
    }
    .tocify li {
        height: 30px;
        overflow: hidden;
    }
/* Top level header elements */
.tocify-header {
    text-indent: 10px;
}

.tocify .active {
    background-color: #e6effc;
    color: #2c57e4;
}
/* 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: 40px;
}

/* 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: 60px;
}

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

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

.well {
border:1px solid #dfdfdf;
background-color:#f2f2f2;
padding:10px 10px;
margin-top:10px;

}