<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-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	background: #ffffff;
	background-image:url('images/blur.jpg');
    background-repeat:repeat-y;
	background-position:center center;
	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;

}

a:link {
	color: #9F7B47;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #9F7B47;
}
a:hover {
	text-decoration: underline;
	color: #CFB897;
}
a:active {
	text-decoration: none;
}



#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left;
} 


#header {
	background: #ffffff;
	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. */
	background-image: url(images/headerback.gif);
	background-repeat: repeat-x;
	height:320px;
} 
 h1, h2 {
	margin: 0;
	color: #9F7B47;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	font-size: 24px;
	font-weight: bold;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 230px; /* 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 */
	text-align: center;
}
#mainContent {
	margin: 0 0 0 250px; /* 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: 0px 30px 10px 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#footer { 
	background:#9f7b47; 
} 

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

#menu {
	height:26px;
	padding-top: 5px;
	margin-left: 230px;
}

#logo {
	height:152px;
	margin-top: 15px;
	margin-left: 0px;
}

#title {
	float: right;
	height:293px;
	margin-top: -175px;
	width: 540px;
}

#tagline {
	float: left;
	height:49px;
	margin-top: 20px;
	width: 230px;
}
#footerbox {
	padding: 5px;
	width: 100%;
	color: #FFFFFF;
	background-color: #846B41;
	font-size: 10px;
	font-weight: bold;
}
#contents {
	padding: 5px;
	color: #FFFFFF;
}

#contents a:link {
	color: #ffffff;
	text-decoration: none;
}

#contents a:visited {
	color: #ffffff;
	text-decoration: none;
}

#contents a:hover {
	text-decoration: underline;
	color: #CFB897;
}

.robotic { display: none; }
</pre></body></html>