@media print {
	.navbar{display:none;}
}
.navbar{display:none;}

body {counter-reset: chapter;}
H1:before {content: "Chapter " counter(chapter) ". "; counter-increment: chapter;  /* Add 1 to chapter */}
H1 {counter-reset: section;      /* Set section to 0 */}
H2:before {content: counter(chapter) "." counter(section) " ";counter-increment: section;}
h2 {counter-reset: subsection;}
h3:before {content: counter(chapter) "." counter(section) "." counter(subsection) " ";counter-increment: subsection;}
#generated-toc UL { counter-reset: item }
#generated-toc UL {margin-left:0;}
#generated-toc LI { display: block }
#generated-toc LI a:before { content: counter(chapter) "." counters(item, ".") " "; counter-increment: item }
.hidden{display:none;}
pre strong{color: #da0000;}
.navbar a{padding: 0 5px;}
/*code {font-size: 112%; color:#333333; font-weight:bold;}*/