/* print styles */
BODY {color: black; background: white;}

A:link, A:visited {
	background: transparent;
	color: #555555; /*grey*/
	text-decoration: underline;
	font-weight: bold;
}
/*
 this is CSS32; may generate an error with W3C CSS validator
after does not work in IE

#contents a[href^="/"]:after {
  content: " (http://www.ojp.usdoj.gov/bjs/" attr(href) ") ";
   }*/
/* 
this also works
*/
#contents a:link:after, #contents a:visited:after {
content: " (http://www.bjs.gov/" attr(href) ") ";
font-size: 70%; /* links appear in small size */
color: #555555; /*grey*/
background: #ffffff; /* white block the link’s underline from appearing behind the added content */
}



#npsContentHeader,  #obBox, #sdBox, #mdBox, #tdBox, #qtBox {display: block;}

#main {display: block;}

#printLogo {
	padding: 2em 0 1em;
	border-bottom: 0.5mm solid #555555;
	margin-bottom: 2em;
	align:center;
}
