/* ---- Colors ---- */
/* blue - #5387b9 */
/* red - #a70c2d */
/* black - #000000 */
/* white - #ffffff */

/* Font Sizes */
/* arial - ?, ?, ? */

/* ---------------------- */
/* ---- HTML classes ---- */
/* ---------------------- */

/* -- This is for all table headers -- */
/* -- Usage: <th>my content</th> -- */
th {
	font-size: 10pt;
	font-family: "arial";
	color: #000000;
}

/* -- This is for all table data -- */
/* -- Usage: <td>my content</td> -- */
td {
	font-size: 10pt;
	font-family: "arial";
	color: #000000;
}

/* -- This is the menu at the top of each page -- */
/* -- Usage: <td class="menu">my content</td> -- */
td.menu {
	font-size: 8pt;
	font-weight: bold;
	color: #ffffff;
}

/* -- This is the header for each section of the sidebar -- */
/* -- Usage: <td class="sidebarheader">my content</td> -- */
td.sidebarheader {
	font-size: 8pt;
	font-weight: bold;
	color: #000000;
}

/* -- This is the regular text for the sidebar -- */
/* -- Usage: <td class="sidebar">my content</td> -- */
td.sidebar {
	font-size: 8pt;
	color: #666666;
}

/* -- This is for all anchors (links) -- */
/* -- Usage: <a href="http://myaddress"> -- */
a {
	text-decoration: none;
}

/* -- This is for each link -- */
/* -- Usage: none, this is simply a property you set -- */
a:link {
	color: #ffffff;
}

/* -- This for each link while it is being clicked -- */
/* -- Usage: none, this is simply a property you set -- */
a:active {
	color: #000000;
}

/* -- This is for each link after it has been visited -- */
/* -- Usage: none, this is simply a property you set -- */
a:visited {
	color: #ffffff;
}

/* ------------------------ */
/* ---- Custom classes ---- */
/* ------------------------ */

/* -- This is for if you need to add just a small space somewhere -- */
/* -- Usage: <span class="pixel">my text</span> -- */
.spacer {
	font-size: 1pt;
}
