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

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

/* 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;
	font-size: 15px;
}

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

.nav .sub-header a {
	padding-left: 30px;
}
.sub-header .sub-header a {
	padding-left: 40px;
}
.sub-header .sub-header .sub-header a {
	padding-left: 50px;
}

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

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

/* Twitter Bootstrap Override Style */
.nav-list > li > a {
	line-height: 1.5em;
 	padding: 7px 5px 7px 15px;
}