/*  Holt Handbook abridged Table of Contents */
/* using tables for markup */

#HoltTable h2, #toc h2, #MultTable h2 {
	margin: 5px 0px;
	font-size: 1.4em;
	text-align: center;
}
#HoltTable table {
	width: 100%;
	table-layout: auto;
}
#HoltTable .sub td {
	margin-left: 30px;
}
#HoltTable td {
	font-weight: bold;
}
#HoltTable .sub td {
	font-weight: normal;
}
.section {
	white-space: pre;
}
.separator {
	width: 99%;
	border-bottom: 1px dotted #222;
}
hr {
	width: 100%;
	visibility: hidden;
}
.page {
	text-align: right;
}

/*  Holt Handbook abridged Table of Contents */
/* using lists for markup */

/* IE centering aligned the text to center, so align it back */
#toc {
	text-align: left;
}
/* formatting it pretty */
#toc ul {
	margin: 0px;
	padding: 0px;
}
/* Display the line items in line gets rid of the bullets */
#toc li {
	margin: 0px;
	padding: 0px;
	display: inline;
 	/* Opera really wants to bend that line */
	white-space : nowrap;
}
/* This is lists of chapters and pages themselves */
#toc dl {
	/* total width of the table of contents, keep it in mind */
	width: 95%;
	margin: 0px;
	padding: 0px;
	line-height: 1.8em;
	/* position relative so we can absolutely position the page numbers */
	position: relative;
	/* The background is a little gif that repeats to make a dotted line */
	background : #ddd url(dots.gif) repeat-x scroll bottom right;
}
/* The chapter titles */
#toc dt {
	/* Displayed inline so they hang left and take up space in the flow */
	display: inline;
	/* Background color is set to cover up the dotted line */
	background-color: #ddd;
}
/* The page numbers */
#toc ul li dd {
	/*positioned absolutely, a little less than the total width */
	position: absolute;
	left: 93%;
	top: 1px; /* just for purtiness */
	/* Mozilla juts the numbers right up against the dotted line, so we add a little space*/
	padding-left: 2px;
}
/* Chapter pairs (dl) are a little indented */
#toc li  li dl {
	margin-left: 4%;
}
/* Part pairs (dl) are more indented */
#toc li ul li ul li dl {
	margin-left: 7%;
}
/* Adding margins means we need to shorten the dl boxes */
/* I need to hide the new widths from IE5/win 
because it interprets the box model wrong */
#toc li li>dl {
	width: 91%;
}
#toc li li li>dl {
	width: 88%;
}
/* Formatting for the subchapters, etc */
#toc dl {
	font-weight: bold;
}
#toc li li dl {
	font-weight: normal;
}
#toc li li li dl {
	font-style: italic;
	font-size: .9em;
}

/*  Multiplication Table */
/* using table for markup */

#MultTable table {
	margin-left: auto;
	margin-right: auto;
}
#MultTable tr#row, #MultTable td:first-child, #MultTable #column {
	background-color: #eee;
}
#MultTable td {
	text-align: center; 
	width: 30px;
}
