/* ============================================================= */

/* THIS STYLE SHEET CONTROLS THE APPEARANCE OF THE PRINTED
 OUTPUT OF THE LOTTERY RESULTS PAGE */

/* ============================================================= */

/* THE "BALL" (DRAW) NUMBERS */
.ball {
  color: #000000;
  font-family: Times New Roman, Times, serif;
  font-size: 17px;
  font-style: normal;
  font-weight: bold;
  height: 32px;
  padding-right: 3px;
  text-align: center;
  width: 28px;
}

/* ============================================================= */

/* STYLES APPLYING TO THE DOCUMENT BODY */
body {
  background-color: #ffffff;
  color: #000000;
  margin-bottom: 10px;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 10px;
  padding: 0px;
}

/* ============================================================= */

/* ANY TEXT NOT STYLED BY ANY OTHER STYLE */
.bodyText {
  color: #000000;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: normal;
}

/* ============================================================= */

/* THE OUTER CONTAINER */
#contentContainer {
  width: 100%;
}

/* ============================================================= */

/* THE PRIMARY PAGE HEADING
 (SHOULD BE USED IN THE header.html PAGE) */
h1 {
  color: #356AA0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-style: italic;
}

/* ============================================================= */

/* THE SECONDARY PAGE HEADING  */
h2 {
  color: #183D3C;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: bold;
}

/* ============================================================= */

/* USED TO HIDE SOME PAGE ELEMENTS (SUBMIT BUTTON ETC.)
 FROM THE PRINTED OUTPUT */
.hideFromPrinter {
  display: none;
}

/* ============================================================= */

