/*
  GoingsOn_Print.css -- Style sheet for making printable pages from web pages in GoingsOn
  Designed to be used in conjunction with GoingsOn_Display.css
  as in:
   <link rel=stylesheet href="../../../../GoingsOn/GoingsOn_Display.css" type="text/css" >
   <link rel=stylesheet href="../../../../GoingsOn/GoingsOn_Print.css" type="text/css" media="print" >
*/

body {
 background-color: white;
 color: black;
}

@page {
  margin: 2cm;
}

/* params for items which should not be printed */
.noprint {
  display: none;
}

/* params for items which should only be printed */
.print {
  display: initial;
}

/* An image suitable for printing, i.e. a high-def many-pixel one */
img.embed {
  max-height: 2.5in;
  max-width: 100%;
}
/*
  max-height: 1.8in;
  max-height: 2.0in;
  max-height: 2.25in;
  max-height: 2.5in;
*/
