@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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: #000;
	background-color: #000000;
	background-image: url(../images/layout/background.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	background-attachment: fixed;
}
#topNavigation  {
	background-image: url(../images/layout/topnavbg.png);
	background-repeat: no-repeat;
	background-position: left top;
	background-color: #FFF;
	color: #000;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 5px;
	padding-left: 20px;
}

.oneColFixCtrHdr #container {
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* 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. */
	margin-top: 30px;
	margin-right: auto;
	margin-bottom: 30px;
	margin-left: auto;
}
.oneColFixCtrHdr #header {
	background: #DDDDDD;  /* 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. */
}
.oneColFixCtrHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.oneColFixCtrHdr #mainContent {
	padding: 20px;
	background-color: #FFFFFF;
	background-image: url(../images/layout/topnavbg.png);
	background-repeat: repeat-x;
	background-position: left top;
	color: #333;
}
.oneColFixCtrHdr #footer {
	background-color: #FFF;
	background-image: url(../images/layout/topnavbg.png);
	background-repeat: repeat-x;
	background-position: left top;
	padding: 20px;
}
a {
	font-weight: bold;
	color: #F00;
	text-decoration: none;
}
.fineprint {
	font-size: 12px;
}
.tableheader {
	background-image: url(../images/layout/topnavbg.png);
	background-repeat: no-repeat;
	background-position: left top;
	font-weight: bold;
	text-align: center;
	height: 35px;
}
.table {
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #000;
	border-bottom-color: #000;
	border-left-color: #000;
	font-size: 14px;
}
.staff {
	float: left;
}
.clearboth {
	clear: both;
}
#tableContainer {
	height: 400px;
}
