@charset "UTF-8";
/* CSS Document */

body  {
	font: 80% Georgia, "Times New Roman", Times, serif;
	background: #cfac11;
	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: #333333;
}

#container {
	width: 850px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF url(../images/background_curve2.gif) no-repeat left top;
	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. */
} 
#header {
	/*background: url(images/britnz2.gif) no-repeat left top;*/
	padding: 0 10px 0 20px;  /* 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: 150px;
	margin-top: 10px;
} 
#header h1 {
	margin: 0 0 0 -1000px; /* 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: 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	display: block;
}

#mainContent {
	margin: 0 0 0 210px; /* 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: 0 20px 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	color: #000000;
}
#mainContent p {
	font-size: 1.1em;
	margin: 0px 0px 5px;
	padding: 0px;
	color: #770A0A;
	line-height: 1.2em;
}
#mainContent p.topline {
	font-size: 1em;
	color: #96510C;
	font-weight: bold;
	margin-top: 20px;
}
#mainContent  h2{
	font: italic 1.5em Georgia, "Times New Roman", Times, serif;
	margin: 10px 0px 0px;
	padding: 0px;
	color: #960C0C;
}

#mainContent h3 {
	color: #96510C;
	font-size: 1.2em;
	padding: 0px;
	margin-top: 10px;
	margin-bottom: 5px;
}
#mainContent a:link {
	border-bottom: 1px none #990066;
	text-decoration: none;
	color: #C11111;
}
#mainContent a:visited{
/*	border-bottom: 1px solid #990066;
*/	text-decoration: none;
	color: #960C0C;
}
#mainContent a:hover, #mainContent a:active  {
	border-top: #990066;
	background: #CFAC11;
	color: #FFFFFF;
	border-bottom: 1px none #990066;
	border-right-color: #990066;
	border-left-color: #990066;
}
#mainContent table {
	font: italic 0.7em Verdana, Arial, Helvetica, sans-serif;
	color: #960C0C;
	width: 310px;
	border-top: none;
	border-right: none;
	border-bottom: none;
	border-left: none;
	background: #FFFFCC;
	margin-top: 5px;
	margin-bottom: 5px;
}
#mainContent table img {
	border-width: 0px;
	border-style: none;
}
#mainContent table tr td a:link {
	text-decoration: none;
	border-style: none;
}

#mainContent table tr td a:hover {
	text-decoration: none;
	background: #eee;
	border-style: none;
}

ol {
	font-size: 1.1em;
	color: #740A0A;
	margin-top: 5px;
	margin-bottom: 5px;
}
#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: 0px 0px 15px 20px;
	margin-top: 0px;
	font-size: 1.1em;
}
#sidebar1 img {
	margin: 10px 1px 0px;
	border: 2px solid #960C0C;
}
#sidebar1 img.noborder {
	margin-left: 20px;
	border-top: none;
	border-right: none;
	border-bottom: none;
	border-left: none;
}
#sidebar1 p {
	margin: 10px 0px 0px 10px;
	font: 1em Georgia, "Times New Roman", Times, serif;
}
#sidebar table {
	margin-left: 1px;
}
#sidebar1 span a:link, #sidebar1 span a:visited {
	font-size: .8em;
	text-decoration: none;
	color: #960C0C;
	margin-left: 10px;
}
#navigation {
	width: 180px;
	float: left;
	clear: right;
	text-align: left;
	margin-bottom: 10px;
	margin-top: 20px;
}
#menu a {
	text-decoration:none;
	text-align:left;
	background-color:#96510C;
	color:#fff;
	display:block;
	width:150px;
	padding:2px 2px 2px 6px;
	margin:0em;
	border-left:5px solid #967D0C;
	border-bottom: 1px solid #967D0C;
  }
#menu a:hover,#menu a.catalogue:hover  {
	/*  border-right:5px solid #000;*/
	background: #EFC615;
	color: #333333;
	border-left: 5px solid #CFAC11;
	border-bottom: 1px solid #CFAC11;
}
#menu a.selected {
	border-left:5px solid #CFAC11;
	border-bottom: 0px solid #000000;
	background: #CFAC11 url(../images/104.gif) no-repeat 140px center;
	color: #96510C;
  }
#menu a.catalogue {
	border-bottom: 1px solid #967D0C;
	border-left: 5px solid #967D0C;
	background: #960C0C;
}

.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;
	margin-top: 15px;
	background: url(../images/horses.gif) no-repeat right top;
	height: 101px;
	padding-left: 20px;
	padding-top: 10px;
	text-align: right;
}
.fltrt h2{
	font: oblique 1.4em Georgia, "Times New Roman", Times, serif;
	color: #960C0C;
	margin-right: 110px;
	padding-top: 0px;
}
.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:1px;
	font: oblique .7em/1.1em Georgia, "Times New Roman", Times, serif;
	color: #990066;
}


img.fltlft  {
	border: 4px solid #96510C;
}
img.float_right {
	float: right;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
}
.small {
	font-size: 0.7em;
}
iframe {
	width: 95%;
	height: 600px;
}
#footer {
	padding: 0px 10px 20px 85px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#CFAC11;
	font-family: Arial, Helvetica, sans-serif;
} 
#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; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: .8em;
	text-align: right;
}

#footer p.fltlft {
	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; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 0.8em;
	text-align: left;
}
#footer p.fltlft img {
	border-style: none;
}
#footer table {
	text-align: center;
	margin: 0px auto;/*	margin-right: 20px;
	margin-top: 30px;
*/
}

form p {}
