body,td,th {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
	color: #000000;
}
body {
	background-color: #FFFADC;
}

a:link {
	color: #000000; text-decoration:none;
}
a:visited {
	color: #000000; text-decoration:none;
}
a:hover {
	color: #009900; text-decoration:none;
}
a:active {
	color: #000000; text-decoration:none;
}
h1 {
	font-size: x-large;
	color: #000000;
}
h2 {
	font-size: large;
	color: #000000;
}
h3 {
	font-size: medium;
	color: #000000;
}
h4 {
	font-size: small;
	color: #000000;
}
h5 {
	font-size: x-small;
	color: #000000;
}
h6 {
	font-size: xx-small;
	color: #000000;
}
a {
	font-size: small;
}

/* tiny text */
.style5 {
	font-size: 11px;
}

.affiliate {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	line-height: 12px;
}

.affiliatelink {
	font-family: Arial, Helvetica, sans-serif;
}

/* Unordered list with decorative empty checkboxes */
ul.checklist {
  /* turn off bullets safely across browsers */
  list-style: none;
  margin: 0;
  padding: 0;
  /* tweak these if you like */
  --box-size: 1em;      /* checkbox size */
  --gap: 0.5em;         /* space between box and text */
  --border-width: 2px;  /* checkbox stroke */
}

/* Space for the box so wrapped lines line up */
ul.checklist > li {
  position: relative;
  padding-left: calc(var(--box-size) + var(--gap));
}

/* Draw the empty checkbox */
ul.checklist > li::before {
  content: "";
  position: absolute;
  left: 0;
  /* vertically align with text x-height without hard-coding line-height */
  top: 0.2em;
  width: var(--box-size);
  height: var(--box-size);
  box-sizing: border-box;
  border: var(--border-width) solid currentColor; /* inherits text color for good contrast */
  border-radius: 3px;  /* set to 0 for sharp corners */
  background: transparent;
  /* purely decorative; keeps screen readers focused on the list text */
  pointer-events: none;
}

/* RTL support: put the box on the right when direction is rtl */
[dir="rtl"] ul.checklist > li {
  padding-left: 0;
  padding-right: calc(var(--box-size) + var(--gap));
}
[dir="rtl"] ul.checklist > li::before {
  left: auto;
  right: 0;
}

/* Print: ensure the box is visible even if text is light-colored */
@media print {
  ul.checklist > li::before { border-color: #000; }
}