@charset "UTF-8";
/*! print.css © 2023, Belmont Information Services */
/**
 * @name		print.css
 * @description	Styles that override the basic styles in a print
 *				environment
 * @author		Mark.Nichols@BelmontInformationServices.com
 * @copyright	© 1991-2023, Belmont Information Services
 * @package		Alvin
 * @version		4
 * @internal	Changes
 * - 11/28/06	Go ahead and include lots of comments, since we strip
 *				the comments for production using the csstidy program.
 * - 04/06/11	Refactor during css refactor of everything else
 * - 05/19/21	Refactor and rename to scss to check build process
 * - 11/16/23	Updated header comment block to see if it still builds
 * - 12/03/23	Rewrite this docblock
 */
/*
 * Anything with this style is ignored in the other stylesheets, but
 * omitted entirely when printed
 */
.noprint {
  display: none; }

/*
.barvin {
	display:			block;
	margin:			30px;
}
*/
/* 07/31/18 Added to stop the tfoot from printing on each page */
table.zGD tfoot {
  display: table-row-group; }

/*
 * Anything with this style appears ONLY when printed. Presently
 * used to include a barcode on the VIN detail page.  It doesn't
 * make any sense to display a barcode on the screen.
 */
.printonly {
  display: block; }

.newpage {
  page-break-before: always; }

/*
 * change the appearance of links when printed
 */
a {
  color: black;
  text-decoration: none; }

a:link {
  color: black;
  text-decoration: none; }

a:visited {
  color: black; }

a:hover {
  color: black;
  text-decoration: none; }

/*
 * Remove the colors on the page heading when printing
 */
div#zpagehead {
  background-color: white;
  color: black; }

div#breadcrumb {
  display: none; }

ul.dmenu {
  display: none; }

body {
  background-color: white; }
