/* 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.ojp.usdoj.gov/bjs/" 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 */
}

/*
H1, H2, H3 {background: white; color: black; padding-bottom: 1px;
   border-bottom: 1px solid gray;}
*/


#ncvsMenu, #ctBox, #main, #victype, #vicvars, #ncvsMenu, #divMain {display: none;}

#printLogo {
	padding: 2em 0 1em;
	border-bottom: 0.5mm solid #555555;
	margin-bottom: 2em;
	align:center;
}

