/* 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. */
}
/* gets rid of navigation and other items for printing */
#navList, #skipNav, .noPrint, #header, #breadCrumbs {
	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;
}

/* styles for footer */
#footer {
	width: 90%;
	border-top: solid thin #000;
	text-align: center;
	margin: auto;
	font-size: .8em;
	line-height: 1.5em;
	clear: both;
}

.boxStyle {
    border: solid 1px #CCC;
	padding: 5px 10px 5px 14px;
	margin: 7px 0px;
}
