/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
}

/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	background-color: #3e3435;
	color: #2e2d2c;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 14px;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
	background-image: none;
}
/* Commonly used to style page titles. */
h1 {
	color: #c17456;
	font-size: 18px;
	font-weight: bold;
	line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
	color: #000000;
	font-size: 14px;
	font-weight: bold;
	line-height: 14px;
}
h3 {
	font-size: 14px;
	font-style: italic;
	font-weight: bold;
	color: #CC9900;
	text-align: left;
}
.14font {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bolder;
	color: c17456;
}

.htext {
	font-family: Times New Roman, Times, serif;
	font-size: 18px;
	font-style: normal;
	font-weight: bold;
	color: #996600;
}


/* Sets the style for unvisited links. */
a,  a:link {
  color: #d75846;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #a14a35;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #c92c17;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #c92c17;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #732600;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	background-color: #fff;
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 780px;
	background-image: url(../Images/left_bg.gif);
	background-repeat: repeat-y;
	background-position: left top;
}
#outerWrapper #header {
	background-color: #bd9c76;
	border-bottom: solid 1px #826a50; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-image: url(../Images/lotshorses-top.jpg);
	height: 150px;
}
#outerWrapper #contentWrapper #leftColumn1 {
	border-right: solid 1px #bd9c76; /* Sets the right border properties for an element using shorthand notation */
	float: left;
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 150px;
	text-align: center;
}
.leftgraphic {
	background-image: url(../Images/lasso2.gif);
	background-position: -5px center;
	height: 82px;
	width: 160px;
	margin: 0px;
	padding: 0px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
	float: none;
	left: 0px;
	color: #663300;
	background-repeat: no-repeat;
}
leftgraphictext {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12px;
	line-height: normal;
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
	height: 82px;
	width: 160px;
}
.leftgraphicpic{
	background-position: 0px center;
	height: 140px;
	width: 140px;
	margin: 0px;
	padding: 0px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	text-align: center;
	vertical-align: text-bottom;
	float: left;
	left: 0px;
	color: #333333;
}

/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 15px;
	margin-left: 170px;
	padding-top: 10px;
	padding-right: 5px;
	padding-bottom: 10px;
	padding-left: 10px;
	line-height: normal;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: left;
  display: block;
}
#outerWrapper #footer {
	background-color: #f4f1e7;
	border-top: solid 1px #bd9c76; /* Sets the top border properties for an element using shorthand notation */
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center;
	font-family: Georgia, Times New Roman, Times, serif;
	font-size: 14px;
}
#blueblock{
	width: 150px;
	border-right: 1px solid #000;
	margin-bottom: 0em;
	font-family: 'Trebuchet MS', 'Lucida Grande', Arial, sans-serif;
	font-size: 90%;
	background-color: #993300;
	color: #333333;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0em;
	padding-left: 0;
}

* html #blueblock{ /*IE 6 only */
width: 147px; /*Box model bug: 180px minus all left and right paddings for #blueblock */
}

#blueblock ul{
list-style: none;
margin: 0;
padding: 0;
border: none;
}

#blueblock li {
border-bottom: 1px solid #90bade;
margin: 0;
}

#blueblock li a{
	display: block;
	padding: 5px 5px 5px 8px;
	border-left: 10px solid #993300;
	border-right: 10px solid #993300;
	background-color: #993300;
	color: #FFFFFF;
	text-decoration: none;
	width: 100%;
	text-align: left;
}

body #blueblock li a{ /*Non IE6 width*/
	width: auto;
	font-size: 14px;
}

#blueblock li a:hover{
	border-left: 10px solid #996600;
	border-right: 10px solid #996600;
	background-color: #996600;
	color: #FFFFFF;
}
.tdtext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	color: #663300;
	text-align: left;
}
.centerDiv {
	text-align: center;
	font-family: Georgia, Times New Roman, Times, serif;
	font-size: 12px;
	left: 175px;
}
.rightDiv {
	float: right;
	width: 270px;
	margin-right: 10px;
	height: 270px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 15px;
}
hr {
	line-height: 5px;
	color: #663300;
	text-decoration: none;
	padding-left: 0px;
	left: 175px;
	width: 75%;
	text-align: center;
}

/* from slide show styling */
div#show3 {
background-color:#efefef;
width:580px;
margin:0 auto;
border:1px solid #444444;
}
div#show3 table td, div#show4 table td {
height:24px;
background-image:url('38.gif');
}
div#show4 table td {
background-image:url('40.gif');
}
div#show3 table input,  div#show4 table input {
outline-style:none;
}
.bigtype {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 18px;
	line-height: normal;
}
.FloatRight {
	float: right;
	padding-top: 1px;
	padding-right: 2px;
	padding-bottom: 1px;
	padding-left: 2px;
}
.FloatLeft {
	float: left;
	padding-top: 1px;
	padding-right: 2px;
	padding-bottom: 1px;
	padding-left: 2px;
}
