@charset "UTF-8";
body  {
	font: 100% Arial, Helvetica, sans-serif;
	background: #FFFFFF url(none) repeat-x;
	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: #41428F;
}
.twoColFixRt #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 10px auto;
	text-align: right;
	border: thin solid #D8D6EC;
}
.twoColFixRt #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 200px; /* 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;
	padding: 10px;
}
.twoColFixRt #mainContent {
	margin: 0 225px 0 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-image: none;
	background-repeat: repeat-x;
	background-color: #FFFFFF;
	border: thin none #7D74B3;
	padding: 0 10px 0 30px;
	text-align: left;
}
.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: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin: 10px 8px 10px 0;
}
.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;
}

.style5 {
	font-size: 100%;
	font-style: italic;
}
.style6 {
	font-size: 90%;
	font-style: italic;
}
.style9 {font-size: 90%}
.style11 {height:0; line-height: 0px; clear: both;}
.logo {
	margin: 0px;
	padding: 0px;
	border: 1px solid #FF0000;
}

h2 {
	font-size: 24px;
	font-weight: bold;
}

h3 {
	font-size: 100%;
	font-weight: bold;
}



/* LINKS */

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

#outhouse {
	text-align: right;
	font-size: 10px;
	padding: 0 45px 0 5px;
	margin-right: auto;
	margin-left: auto;
	margin: 0;
}