/* pdf.css
 *
 * Stylesheet for: html2ps -f pdf.css | ps2pdf -sPAPERSIZE=a4 - -
 */

body {
  font-family: Times;
  font-size: 11pt;
  text-align: justify;
  background: white;
  color: black;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  margin-top: 1em;
  margin-bottom: 0.5em;
}

h1 { font-size: 19pt }
h2 { font-size: 17pt }
h3 { font-size: 15pt }
h4 { font-size: 13pt }
h5 { font-size: 12pt }
h6 { font-size: 11pt }

pre { font-size: 10pt }

p, ol, ul, dl, blockquote, pre {
  margin-top: 1em;
  margin-bottom: 1em;
}

p {
  line-height: 1.14em;
  text-indent: 0;
}

ol, ul, dd {
  margin-left: 2.4em;
  margin-right: 0em;
}

code, samp, kbd, tt, pre {
  font-family: Courier;
}

blockquote {
  margin-left: 1em;
  margin-right: 1em;
}

address {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

table {
  margin-top: 1em;
  margin-bottom: 1em;
}

div.navigation, div.search, div.toc, div.noprint {
  display: none;
}

hr.page-break {
  display: none;
  page-break-before: always;
}

hr {
  color: black;
}

a:link, a:vlink {
  color: #000080;
  text-decoration: none;
}

@page {
  type: A4;
  margin-left: 2cm;
  margin-right: 2cm;
  margin-top: 1.8cm;
  margin-bottom: 2.2cm;
}

@html2ps {
  option {
    text: 1;
    underline: 0;
    colour: 1;
    hyphenate: 1;
    toc: "h";
  }
  ball-radius: 0.2em;
/*
  header {
    center: "$T";
  }
*/
  footer {
    center: "- $N -";
  }
  toc {
    level: 6;
    indent: 1.5em;
    heading: "<h1><a name='toc' id='toc'>Table of Contents</a></h1>";
  }
}

