@charset "utf-8";

body  {
	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: #594B2B;
	background-image: url(images/backgrd.jpg);
	background-repeat: repeat;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	background-color: #343332;
}

A:link {
	text-decoration: none;
	color: #C3AF82;
}
A:visited {
	text-decoration: none;
	color: #C3AF82;
}
A:active {
	text-decoration: none;
	color: #C3AF82;
}
A:hover {
	color: #FFD86F;
	border-color: #794704;
	text-decoration: underline;
}

.headertext {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 24px;
	font-style: normal;
	font-weight: bold;
}

.twoColFixLtHdr #container {
	width: 780px;
	text-align: left;
	background-color: #FFFFFF;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #554E40;
	border-right-color: #554E40;
	border-bottom-color: #554E40;
	border-left-color: #554E40;
} 
.twoColFixLtHdr #header {
	background-color: #181612;
} 
.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 */
	background-color: #040F0B;
	}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px;
	border-right-color: #000000;
	border-right-style: solid;
	border-right-width: 1px;
	background-color: #FFFFFF;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 2px;
}
.twoColFixLtHdr #sidebar2 {
	float: left; /* since this element is floated, a width must be given */
	width: 5px;
	background-color: #7B705D;
	padding: 1px;
}
.twoColFixLtHdr #mainContent {
	border-left-color: #554E40;
	border-left-style: none;
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 2px;
	padding-right: 1px;
	padding-bottom: 2px;
	padding-left: 10px;
} 
.twoColFixLtHdr #mainContent2 {
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 1px;
	padding-top: 1px;
	padding-right: 1px;
	padding-bottom: 15px;
	padding-left: 20px;
}
.twoColFixLtHdr #footer {
	float: none;
	text-align: center;
	background-color: #343332;
	width: auto;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #554E40;
	border-right-color: #554E40;
	border-bottom-color: #554E40;
	border-left-color: #554E40;
} 
.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; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	background-color: #343332;
}
.oneColFixCtrHdr #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; /* 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. */
}
.oneColFixCtrHdr #header {
	background-color: #7B705D;
}
.oneColFixCtrHdr #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	background-color: #7B705D;
}
.oneColFixCtrHdr #mainContent {
	border-left-color: #554E40;
	border-left-style: none;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 5px;
	padding-top: 2px;
	padding-right: 1px;
	padding-bottom: 2px;
	padding-left: 10px;
}
.oneColFixCtrHdr #footer {
	float: none;
	text-align: center;
	background-color: #343332;
	width: auto;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #554E40;
	border-right-color: #554E40;
	border-bottom-color: #554E40;
	border-left-color: #554E40;
}
.oneColFixCtrHdr #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 */
	background-color: #343332;
}

.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;
}

.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:left;
}
.footertxt {
	font-size: 12px;
	color: #C3AF82;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
.footerspacer {
	font-size: 14px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	color: #999999;
}
copyrightstyle {
	font-family: "Courier New", Courier, monospace;
	font-size: 12px;
	font-style: normal;
	color: #000000;
}
.copyrightclass {
	font-family: "Times New Roman", Times, serif;
	font-size: 12px;
	font-style: normal;
	font-weight: bold;
	font-variant: normal;
	color: #666666;
}
.maintext1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12pt;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #333333;
	text-decoration: none;
	margin-left: 20px;
	padding-left: 10px;
	text-indent: 10px;
}

.style1 {
	color: #CCCCCC;
	font-weight: bold;
	border-bottom-color: #FDE173;
	border-bottom-width: 1px;
	border-top-width: 0px;
	border-top-color: #1F1701;
}


p#breadcrumbs
{
	margin-top: 2px;
	position: relative;
	top: 0px;
	left: 5px;
	font-size: 12px;
	font-weight: 700;
	color: #3C2302;
}
p#breadcrumbs a
{
	font-weight: 700;
	color: #3C2302;
	background-color: transparent;/*#cccc99;*/
	text-decoration: none;
}
p#breadcrumbs a:hover
{
	color: #3C2302;
	background-color: transparent;/*#cccc99;*/
	text-decoration: underline;
}
p#breadcrumbs a:link, p#breadcrumbs a:visited
{
	color: #3C2302;
	background-color: transparent;/*#cccc99;*/
}
.smallmaincontenttxt {font-size: smaller}
.h2txt {color: #330066}
.featureshdrtxt {
	font-size: 24px;
	color: #140C01;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-decoration: none;
}
#apDiv1 {
	position:relative;
	width:200px;
	height:115px;
	z-index:1;
	top: 144px;
}
.featurestxt {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 24px;
	font-style: normal;
}
.h1text {color: #3C2302}
.maintxtsmall {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #1B1001;
}
.maintext1inverted {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #FBECCA;
}
.headertxt1 {
	color: #E5BA2E;
	font-family: "Times New Roman", Times, serif;
}
.headertxt2 {
	color: #E9E9E9;
	font-family: "Courier New", Courier, monospace;
	font-size: 16px;
	font-style: oblique;
	font-weight: bold;
}
.headertxt3 {
	color: #D8AD1B;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 18px;
}

/* photogallery style */
#container li {
	float: left;
	width: 100;
	height:25;
	list-style-type:none;
	border: solid #ccc;
	border-width: 1px 1px 0 0;
	-moz-border-radius-topright:10px;
	margin:1em;
	text-align:center;
	display:inline;
}
li img { border: none; }
ul#photos li a span { display: none; }
ul#photos li a:hover span {
display: block;
color: #333;
background-color:tan;
-moz-border-radius: 10px;
padding: .25em 0 .25em 0;
text-transform: uppercase;
font-size: .85em;
}
#photo, #pictureScreenObject {
display:none;
position: absolute;
left:15%;
z-index:100;
background:#fff;
padding:2em;
margin:1em;
font: 0.9em Arial, Helvetica, sans-serif;
border:1px solid #ccc;
text-align: center;
-moz-border-radius: 20px;
}
.featuretxtsmall {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #000000;
}
/* default styles */

img.imgBlock, .imgBlock img {
	display: block;
}
.hideText {
	display: none;
}
table.menu {
}
table.menu div span.pos {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 200px;
	z-index: 1000;
}
table.menu div#subMenu1 span.pos {
	width: 204px;
}
table.menu div#subMenu2 span.pos {
}
table.menu div#subMenu3 span.pos {
}
table.menu div.subMenuItem {
	position: relative;
	visibility: hidden;
}
table.menu div.subMenuItem a {
	color: #AB7614;
	font: bold 11px Arial, Helvetica, sans-serif;
	text-decoration: none;
	background-color: #EAEAD1;
	border-right: 1px solid #CCCC99;
	border-bottom: 1px solid #CCCC99;
	border-left: 1px solid #CCCC99;
	padding: 3px 6px;
	display: block;
}
table.menu div.subMenuItem a:active, table.menu div.subMenuItem a:hover {
	color: #FFFFFF;
	background-color: #BB0000;
}