<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
body {
	font: 76% Verdana, Arial, Helvetica, sans-serif;
	background: #ABB7C2;
	margin: 0;
	padding: 0;
	text-align: center;
	color: #000000;
}
#container {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	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: #DDDDDD;
	background: #000 url(../assets/header.jpg) no-repeat;
	height: 110px;
	padding: 0;
}
#logo {
	padding: 0;
	margin: 0;
}
#container .top {
	font-size: 3em;
	padding-bottom: 15px;
	padding-left: 200px;
	margin:auto;
	border-bottom: 3px solid #5a6b7b;
}
#container #TopLine {
	background: #586B7B;
	height: 3px;
	padding-left: 2px;
	padding-right: 2px;
	width: 796px;
	margin-bottom: 15px;
}
#container #TopNav {
	background: #8A3B25;
	height: 14px;
	padding-left: 45px;
	padding-right: 5px;
	margin-bottom: 20px;
}
#container #TopNav ul {
	padding: 0px;
	top: -8px;
	float: right;
	position: relative;
	margin: 0px;
	width: 100%;
}
#container #TopNav li {
	list-style: none;
	color: #FFFFFF;
	float: left;
	font-size: 13px;
	margin-right: 3px;
	margin-left: 3px;
	padding: 2px;
}
#container #TopNav a {
	color: #000000;
	text-decoration: none;
	padding: 4px 10px;
	background: #B4BD91;
	border: 1px solid #10203A;
	font-weight: bold;
	line-height: 22px;
}
#container #TopNav a:hover {
	color: #FFFFFF;
	background: #4a5231;
}
#container #TopNav a.active {
	background: #285193;
}
#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 */
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	/* background: #b4bd91; *//* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 15px;
	clear: left;
}
#sidebar1 .box160 {
	background-color:#B4BD91;
	margin-top: -10px;
	margin-left:auto;
	margin-right: auto;
	border: 1px solid #636363;
}
#sidebar1 .box160 h3 {
	line-height:31px;
	color:#000000;
	padding:0 15px;
	margin:0;
	font-size:14px;
	border-bottom: 2px solid #252525;
}
#sidebar1 .box160 ul {
	list-style:none;
	padding:10px 14px 0;
	width:120px;
	background:#B4BD91;
	height:auto;
	margin: 0px;
}
#sidebar1 .box160 ul li {
	text-decoration:none;
	color:#000000;
	padding:2px 0;
	font-size:1em;
	border-bottom:1px solid #636363;
	word-spacing:-1px;
	list-style: none;
}
#sidebar1 .box160 ul li a {
	text-decoration:none;
	color:#000000;
	font-weight:bold;
}
#sidebar1 .box160 ul li a:hover {
	text-decoration:none;
	color:#BA3B25;
	font-weight:bold;
}
#sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 160px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px 2px 2px;
}
#mainContent {
	margin: 0px 200px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 10px 10px 0;
}
#mainContentLong table tr th {
	text-align: left;
}

#mainContentLong {
	padding: 10px 10px 0;
	margin: 0px 10px 0px 200px;
}
#footer {
	padding: 0 0px 0 200px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#4a5231;
	border-bottom: 1px solid #333333;
	border-top: 1px solid #4A5231;
}
#footer p {
	color:#FFF;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 7px 0px 10px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: .80em;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
.imgscright {
	float:right;
	margin-top: 0px;
	margin-left: 15px;
	margin-bottom: 6px;
	margin-right: 10px;
}
.imgsleft {
	float:left;
	margin-top: 0px;
	margin-left: 15px;
	margin-bottom: 6px;
	margin-right: 10px;
}
.nocell {
	float:right;
	margin-top: 10px;
	margin-left: 15px;
	margin-bottom: 6px;
	margin-right: 10px;
	width: 129px;
	color:#F00;
	font-weight:bold;
	text-align:center;
	padding: 5px;
	padding-top: 5px;
	border: 1px solid #000;
}
.sponsors {
	font-size: 1em;
	padding: 5px;
	margin:5px;
	border: 1px dotted #006600;
}
.spname {
	margin-left: 200px;
	padding: 2px;
	border: 1px solid #CCCCCC;
}
.sponsors a {
	margin: 0 0px;
	text-decoration: underline;
	font-weight:bold;
}
.imglft {
	float:left;
	border-color:#000000;
	height: 140px;
	width: 190px;
	margin-right: 10px;
}
.centeredImage {
	text-align:center;
	margin-top:0px;
	margin-bottom:0px;
	padding:0px;
}
</pre></body></html>