<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: 74% Verdana, Arial, Helvetica, sans-serif;
	background: #ABB7C2;
	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;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #5A6B7B url(../assets/drop_shadow.gif) repeat-y;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding-right: 8px;
	padding-left: 8px;
}
#sidebar1  {
	float: left;
	color: #FFF;
	padding: 15px 10px;
	width: 179px;
}
#navcontainer {
	margin-left: 0px;
	padding: 0;
	margin-bottom: 1em;
	font-family: Verdana, Lucida, Geneva, Helvetica, Arial, sans-serif;
	background-color: #5A6B7B;
	color: #333;
}
#navcontainer ul {
	list-style: none;
	margin-left: 0;
	padding: 0;
	border: none;
}
#navcontainer li {
	border-bottom: 1px solid #90bade;
	margin: 0;
	color: #FFF;
}
#navcontainer li a {
	display: block;
	padding: 5px;
	background-color: #5A6B7B;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	width: auto;
}
#navcontainer .first {
	border-top: 1px solid #90bade;
}

#navcontainer li a:hover {
	background-color: #2586d7;
	color: #fff;
}
#navcontainer li li {
	border-top: 1px solid #90bade;
	border-bottom: 0;
	margin: 0;
}
#navcontainer li li a {
	display: block;
	padding: 5px 5px 5px 25px;
	background-color: #5A627B; /* #13136C */
	color: #fff;
	text-decoration: none;
	width: auto;
}
#mainContent  {
	margin: 0px 0px 0px 201px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 10px 20px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFF;
}
#mainContent h1 {
	border-bottom: 2px solid #5A6B7B;
	font-size: 140%;
}
#mainContent h2 {
	font-size: 130%;
}
#mainContent table {
	border-collapse: collapse;
	border-color: #666;
	font-size: 95%;
}
#mainContent table tr th {
	background: #F2F2F2;
	border: 1px solid #666;
}
#mainContent table tr td {
	border: 1px solid #666;
}

#numbox a {
	display:block;
	width:100%;
	background-color: #FFD37F;
	text-align:center;
	color:#000;
	height: 100%;
	line-height: 27px;
}
#numbox a:hover {
	background-color:#A3CDEE;
}
#footer  {
	padding: 0 10px 0 240px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	border-top: 1px solid #333;
	clear: both;
	border-bottom: 1px solid #333;
}
#footer p  {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* 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;
}
.image_fltrt {
	margin: 0px 0px 10px 10px;
	float: right;
}
.image_fltlft {
	margin: 0px 10px 10px 0px;
	float: left;
}

.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;
}
.morespace li {
	padding-top: 5px;
	padding-bottom: 5px;
}
</pre></body></html>