@charset "utf-8";

/* CSS Document */



body {
	font: 100% Arial, Helvetica, sans-serif;
	background: #000000;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

#container {
	width: 800px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #000000;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}

#header {
	background: #000000;
	padding: 0 0px 0 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}

#mainContent {
	padding: 0 10px;
	color: #FFF;
	font: .9em/1.3em Verdana, Geneva, sans-serif;
}

#mainContent p a {
	color: #FFF;
	text-decoration: none;
}

#mainContent p a:hover {
	color: #C00;
	text-decoration: underline;
}

#mainContent ul li a {
	color: #9FF;
}

#mainContent ul li a:hover {
	color: #F00;
	text-decoration: underline;
}

#mainContent table {
	margin-right: auto;
	margin-left: auto;
}

#mainContent table tr .maintxt a {
	color: #CCC;
	text-decoration: none;
}

#mainContent table tr .maintxt a:hover {
	color: #C00;
}

.headtxt {
	font: Arial, Helvetica, sans-serif;
	text-align: left;
	font-size: 24px;
	background-color: #000000;
	color: #FFFFFF;
	font-weight: normal;
}

.maintxt {
	font: Arial, Helvetica, sans-serif;
	text-align: left;
	font-size: 16px;
	background-color: #000000;
	color: #FFF;
	font-weight: normal;
}

.bottom {
	font: Arial, Helvetica, sans-serif;
	text-align: center;
	font-size: 12px;
	background-color: #000000;
	color: #FFFFFF;
	font-weight: normal;
}

.nav {
	font: normal 14px Arial, Helvetica, sans-serif;
	text-align: center;
	background-color: #000000;
	color: #FFFFFF;
}
.nav th a {
	color: #FFF;
	text-decoration: none;
}

.nav th a:hover {
	color: #F00;
}


h2 {
	font: 140% Georgia, "Times New Roman", Times, serif;
}

#footer {
	padding: 0 10%;
	color: #FFF;
	text-align: right;
	font: .7em/1.5em Verdana, Geneva, sans-serif;
	background-color: #333;
	margin-top: 40px;
}

#footer p a {
	color: #CCC;
	text-decoration: none;
}

#footer p a:hover {
	color: #F00;
	text-decoration: none;
}
