/* styles.css */

body, table, th, td, p, div, span {
	font-family: Arial, Verdana, Helvetic, Gadget, sans-serif;
	color: #FFF;
	background-color:#000;
}

/* Set links to white text, remove underline */
a {
  color: white;
  text-decoration: none;
}

/* Make link text bold when hovered */
a:hover {
  /* font-weight: bold; */
  text-decoration: underline;
}

.ten {
font-family: Arial, Verdana, Helvetic, Gadget, sans-serif;
font-size: 10pt
}

.eight {
font-family: Arial, Verdana, Helvetic, Gadget, sans-serif;
font-size: 8pt
}

table {
	width: 99%; /* Table takes up 98% of the page width */
	table-layout: fixed; /* Ensures column widths are respected */
	margin-left: 10; /* Aligns the table to the left edge of the page */
}

.column1 {
  width: 100px; /* Column 1 width is fixed at 120px */
}

.column2 {
  width: auto; /* Column 2 takes the remaining width */
  padding-left: 20px; /* Adds padding on left of cell */
}

/* end  */
