/* CSS Document */
/* below is an example of negating the background image if you happen to have it specified in the main.css file */
body {
	background: #fff url(none); /* Changes the background color of the page to white and removes the tiling image. */
	font: 12pt "Times New Roman", Times, serif; /* Changes the font size to 12 and the unit of measurement to points, a print unit. Changes the font from a sans-serif to a serif, which is widely believed to be easier to read on a printed page. */
	color: #000;
}
/* gets rid of navigation and other items for printing */
#navList, #skipNav, .noPrint, #displayArea, .movieBorder {
	display:none;
}
/* changes link color to black */
a:link {
	color: #000;
}
a:visited {
	color: #000;
}
.printOnly {
	display: block;
}
.forReader {
	height: auto;
	width: auto;
	overflow: auto;
	display: block;
}

#header h3, #header h4 {
	margin: 0;
	padding: 0;
}
#footer { 
	padding-top: 20px;
	font-size: 0.8em;
	text-align: center;
}
.twoColFixLtHdr #footer p {
	padding: 4px 0px 4px 0px;
}

#picListContainer {
	padding: 10px 0px 14px 0px;
	text-align: center;
}
#picList {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
#picList li {
	padding: 4px 4px 0px 0px;
	margin: 0px;
	float: left;
}
#picList li a {
	margin: 0px;
	padding: 0px;
	display: inline-block;
}
#picList li a {
	display: block;
}
#picList li a img {
	border: 2px solid #171e53;
}
#displayPic img {
	border: 2px solid #171e53;
}
#displayPic {
	text-align: center;
}
