@charset "UTF-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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;
	background-color: #150b50;
}
.twoColFixLtHdr #container {
	width: 820px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	font-size: 85%;
	color: #150b4b;
	background-color: #fdfbe9;
	padding: 0 20px;
} 
.twoColFixLtHdr #header {
	height: 175px;
	background-color: #fdfbe9;
	background-image: url(images/horselogo.jpg);
	background-repeat: no-repeat;
	background-position: center;
	padding-top: 15px;
	border-style: none;
} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color: #CC9933;
	font-size: 60px;
}
#navigation {
	display: block;
	border-style: none;
	height: 85px;
	width: 820px;
	margin-top: 15px;
	overflow: visible;
}
#nav li {
	font-size: 75px;
	list-style-type: none;
	border-style: none;
	display: inline;
}

#nav a {
	border-style: none;
	height: 65px;
	width: 120px;
}

#nav a:hover, a:active {
	border-style: none;
	text-decoration: none;
}

#home a {
	border-style: none;
	height: 65px;
	width: 120px;
	background-color: transparent;
	}
#home a:hover {
	border-style: none;
	height: 65px;
	width: 120px;
	background-color: #999FFF;
	}
#contact a {
	border-style: none;
	height: 65px;
	width: 120px;
	background-color: transparent;
	}
#contact a:hover {
	border-style: none;
	height: 65px;
	width: 120px;
	background-color: #999FFF;
	}
#links a {
	border-style: none;
	height: 65px;
	width: 120px;
	background-color: transparent;
	}
#links a:hover {
	border-style: none;
	height: 65px;
	width: 120px;
	background-color: #999FFF;
	} 
#press a {
	border-style: none;
	height: 65px;
	width: 120px;
	background-color: transparent;
	}
#press a:hover {
	border-style: none;
	height: 65px;
	width: 120px;
	background-color: #999FFF;
	}
#order a {
	border-style: none;
	height: 65px;
	width: 120px;
	background-color: transparent;
	}
#order a:hover {
	border-style: none;
	height: 65px;
	width: 120px;
	background-color: #999FFF;
	}
#galleries a {
	border-style: none;
	height: 65px;
	width: 120px;
	background-color: transparent;
	}
#galleries a:hover {
	border-style: none;
	height: 65px;
	width: 120px;
	background-color: #999FFF;
	}

.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0 0 120px 0;
}
h3  {
	line-height: 90%;
}
a  {
	border-style: none;
	color: #660000;
	text-decoration: none;
}
a:hover, a:active  {
	border-style: none;
	color: #3333CC;
	text-decoration: underline;
}
.ul  {
	text-decoration: none;
	list-style-type: none;
}

.twoColFixLtHdr #mainContent {
	margin: 0 0 0 20px;
	background: transparent;
	padding: 10px 20px;
} 
.twoColFixLtHdr #footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:transparent url(images/horsefooterlogo.jpg) no-repeat center;
	text-align: center;
} 
.twoColFixLtHdr #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;
}
.p2    {
	font-size: 80%;
}
.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;
}
.fltlft { /* this class can be used to float an element left in your page */
	line-height: 25px;
	width: 200px;
	float: left;
	height: 275px;
	padding-right: 10px;
	margin-top: 30px;
}
.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;
}
