﻿/* Default Print Stylesheet Template
   by Rob Glazebrook of CSSnewbie.com
   Last Updated: June 4, 2008
   
   Feel free (nay, compelled) to edit, append, and 
   manipulate this file as you see fit. */
   

/* SECTION 1: Set default width, margin, float, and
   background. This prevents elements from extending 
   beyond the edge of the printed page, and prevents
   unnecessary background images from printing */
body, #content, #container {
	width: 100%;
	margin: 0;
	float: none;
	background: #fff url(none);
}

/* SECTION 2: Remove any elements not needed in print. 
   This would include navigation, ads, sidebars, etc. */
#topnav, #navbar, #nav, #sidebar, .ad, .noprint {
	display: none; 
}

/* SECTION 3: Set body font face, size, and color.
   Consider using a serif font for readability. */
body {
	font-family: Segoe UI, Tahoma, Helvetica, Arial;
	color: #000; 
	font-size: 12pt;
}

/* SECTION 4: Set heading font face, sizes, and color.
   Diffrentiate your headings from your body text.
   Perhaps use a large sans-serif for distinction. */
h1,h2,h3,h4,h5,h6 {
	color: #000;
	font-family: Segoe UI, Tahoma, Helvetica, Arial;
	
}
h1 { font-size: 130%; }
h2 { font-size: 120%; }
h3 { font-size: 110%; }
h4 { font-size: 100%; font-variant: small-caps; }
h5 { font-size: 100%; }
h6 { font-size: 90%; font-style: italic; }

/* SECTION 5: Make hyperlinks more usable.
   Ensure links are underlined, and consider appending
   the URL to the end of the link for usability. */
a:link, a:visited {
	color: #00c;
	font-weight: bold;
	text-decoration: underline;
	font-family: Segoe UI, Tahoma, Helvetica, Arial;
}

#content a:link:after, #content a:visited:after {
	content: " (" attr(href) ") ";
}

img {
	max-width: 90%;
	max-height: 70%;
}

.PrintField {
    /*page-break-inside: avoid;*/
} 

.PrintEntryID {
	position: relative;
	height: 100%;
	/*page-break-inside: avoid;*/
	page-break-after: avoid;
    font-size: 8pt;
}

.PrintEntry {
	position: relative;
	height: 100%;
	/*page-break-inside: avoid;*/ 
    margin-left : 15pt;
}

	.PrintEntry > div {
		page-break-after: avoid;
		page-break-before: avoid;
		/*page-break-inside: avoid;*/
	}

.PrintChapterWrapper {
	/*page-break-after: always;*/
}

.PrintChapterWrapper .PrintChapterTitle h1 {
	page-break-before: always;
}

.PrintChapterTitle {

}

hr {
	border: 0px;
	border-bottom: 1px solid #888;
}

.clear-both {
	clear: both;
}

ul.PrintTOC, ul.PrintAuthorList {
	margin-left: 0;
	padding-left: 1em;
}

	ul.PrintTOC li, ul.PrintAuthorList li {
		list-style: none;
	}

		ul.PrintTOC li.toc_1 {
			padding-left: 0;
		}

		ul.PrintTOC li.toc_2 {
			padding-left: .5em;
		}

		ul.PrintTOC li.toc_3 {
			padding-left: 1em;
		}

		ul.PrintTOC li.toc_4 {
			padding-left: 1.5em;
		}

		ul.PrintTOC li.toc_5 {
			padding-left: 2em;
		}

		ul.PrintTOC li.toc_6 {
			padding-left: 2.5em;
		}

li[class*='toc_'] a {
	text-decoration: none;
	color: #000;
	font-weight: normal;
}

	li[class*='toc_'] a::after {
		content: " on page " target-counter(attr(href), page);
	}

.PrintDocTitle {
	
}

span.PrintEntryTOC {
	font-size: 8pt;
}

table {
	max-width: 90%;
}

tr {
	page-break-inside: avoid;
}

.PrintOptions {
	display: none;
}

.hide {
	display: none;
}