<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #C3D1DF;
	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: 780px;
	/* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #A42F3F;
	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. */
	padding: 0px;
}

#header {
	background: #316192 url(../rodeos/images/header.jpg) no-repeat;
	/* 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. */
	height: 140px;
	padding: 15px 25px 25px;
}

#header h1 {
	position: absolute;
	top: -500px;
	visibility: hidden;
}

#header .sandbag {
	float: left;
	clear: left;
	width: 105px;
	height: 125px;
}

#container #TopNav {
	background: #183056;
	height: 6px;
	padding-left: 16px;
	padding-right: 5px;
}

#container #TopNav ul {
	padding: 0px;
	top: -8px;
	float: right;
	position: relative;
	margin: 0px 0px 0px 5px;
	width: 100%;
}

#container #TopNav li {
	list-style: none;
	color: #FFFFFF;
	float: left;
	font-size: 12px;
	margin-right: 1px;
	margin-left: 1px;
	padding: 0px 2px;
}

#container #TopNav a {
	color: #FFFFFF;
	text-decoration: none;
	padding: 4px 6px;
	background: #1C3E95;
	border: 1px solid #10203A;
	font-weight: bold;
	line-height: 22px;
}

#container #TopNav a:hover {
	background: #1C3766;
}

#container #TopNav a.active {
	background: #10203A;
}

#sidebar1 {
	float: left;
	/* since this element is floated, a width must be given */
	width: 160px;
	/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 10px 15px 15px;
}

#container #sidebar1 h3 {
	color: #000000;
	font-size: 1.2em;
	padding-bottom: 5px;
	border-bottom: 2px solid #183056;
}

#container #sidebar1 ul {
	margin: 0px 0px 0px 5px;
	padding: 0px;
}

#container #sidebar1 li {
	list-style: none;
	border-bottom: 1px solid #8B2734;
	padding-bottom: 3px;
	padding-top: 2px;
}

#container #sidebar1 a {
	color: #E5E5E5;
	font-size: 80%;
	text-decoration: none;
	font-weight: bold;
	display: block;
	line-height: 18px;
}

#container #sidebar1 a:hover {
	color: #171717;
}

#sidebar2 {
	float: right;
	/* since this element is floated, a width must be given */
	width: 140px;
	/* 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: #527EBF;
	/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 15px 15px 15px;
	border-bottom: 1px solid #000000;
	border-left: 1px solid #000000;
}

#container #sidebar2 h3 {
	color: #000000;
	padding-bottom: 5px;
	font-size: 95%;
}

#container #sidebar2 ul {
	margin: 0px 0px 0px 10px;
	padding: 0px;
}

#container #sidebar2 li {
	margin: 0px 0px 5px;
	list-style: square;
	color: #CCCC99;
}

#container #sidebar2 a {
	color: #000000;
	font-size: 90%;
}

#mainContent {
	margin: 0 0 0 185px;
	background: #FFFFFF;
	padding: 20px;
	border-left: 1px solid #666666;
	font-size: 0.9em;
	min-height: 550px;
}

#mainContent h2 {
	border-bottom: 2px solid #666666;
	color: #183056;
}

#mainContent h3 {
	color: #78232E;
}

#mainContent li {
	margin-bottom: 5px;
}

#footer {
	padding: 0 10px 0 20px;
	/* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #316192;
	border-top: 3px solid #183056;
	clear: both;
	font-size: 0.9em;
	font-weight: bold;
	color: #FFFFFF;
}

#footer p {
	margin: 0 0 0 185px;
	/* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 5px 0;
	/* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 0.9em;
	font-weight: bold;
	color: #FFFFFF;
}

#footer a {
	color: #FFFFFF;
}

.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;
}

#thumbnails {
	margin-right: 20px;
	margin-left: 20px;
}

#thumbnails img {
	width: 100px;
	height: 67px;
	float: left;
	border: 1px solid #D5D5CA;
	padding: 4px;
	background: #FFFFFF;
	margin-right: 4px;
	margin-bottom: 4px;
}

#mainContent th {
	background: #CCCCCC;
	text-align: left;
}

form td {
	border-bottom: 1px solid #CCCCCC;
}

.img_left {
	margin: 15px 15px 15px 0px;
	float: left;
}

.img_right {
	margin: 15px 0px 15px 15px;
	float: right;
}</pre></body></html>