/*
|  PRINT.CSS
|  Print stylesheet for dmargulis.com
|  Media:         print
|  XHTML layout:  table-based
|           (see inline comments)
|-------------------------------------------*/  

/* Modified subset of `base.css`.  In general, print
   styling falls back on unstyled appearance, with 
   selected screen style rules preserved or modified. */

/* Preserve basic `body` styles; make text black. */

body {
  margin: 0;
  padding: 0;
  color: #000;
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .8em;
  line-height: 1.2;  /* Worth playing with. */
}

a:link,
a:visited {
	color: #000;
}

/* Continue to suppress h1 in header.  */

#header h1 {
  display: none;
}

/* Size and style h2 and h3 headers in the content ID */

#content h2 {
  font-size: 1em;
  margin-bottom: -.5em;
}

#content h3 {
  font-size: 1em;
  font-style: italic;
  margin-bottom: -.5em;
}

#content p {
  margin-bottom: -.5em;
}

#content ul {
 list-style-type: disc;
 /* list-style-type: square; */
	list-style-image: url(images/bullet.jpg); 
}

/* Preserve footer ID styles. */

#footer {
  text-align: center;
  margin: 0;
  padding: 1em;
  background: #fff;
  font-size: .7em;
}

#footer hr {
  color: #000;
  background: #000;
  height: 1px;
}

/* Suppress display of left-column cells when printing. */

td.sidebar {
  display: none;
}

/* Suppress borders on IMG links. */

a img {
  border: none;
}

/* Bring over other style declarations from `base.css` as needed. */
