@charset "UTF-8";
.contentheader {font-size: 24px}
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; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	background-image: url(images/bg1.jpg);
	background-repeat: repeat-x;
	background-color: #E8D4A3;
}

a:link {
	color: #E8D4A3;
	text-decoration: none;
}

a:visited {
	color: #E8D4A3;
	text-decoration: none;
}

a:hover {
	color: #633B01;
	text-decoration: underline;
}

a:active {
	color: #633B01;
}


/*class  - menu link style*/
.textheader a:link {
	color: #E8D4A3;
	text-decoration: none;
}

.textheader a:visited {
	text-decoration: none;
	color: #E8D4A3;
}
	
.textheader a:hover {
	color: #633B01;
	text-decoration: underline;
	
}

.textheader a:active {
	text-decoration: underline;
	color: #633B01;
}

/*class  - text and link style for body content*/
.bodylink a:link {
	color: #633B01;
	text-decoration: none;
}

.bodylink a:visited {
	text-decoration: none;
	color: #633B01;
}
	
.bodylink a:hover {
	color: #633B01;
	text-decoration: underline;
	
}

.bodylink a:active {
	text-decoration: underline;
	color: #633B01;
}



.downlink a:link {
	color: #633B01;
	text-decoration: underline;
}

.downlink a:visited {
	text-decoration: none;
	color: #633B01;
}
	
.downlink a:hover {
	color: #633B01;
	text-decoration: underline;
	
}

.downlink a:active {
	text-decoration: underline;
	color: #633B01;
}

.downlink {
	font-size: 12px;

}

/* sub-menu links in rounded box */

.roundedfg a:link {
	text-decoration: none;
	color: #633B01;
	}

.roundedfg a:visited {
	text-decoration: none;
	color: #633B01;
	}

.roundedfg a:hover {
	text-decoration: underline;
	color: #E8D4A3;
	}

.roundedfg a:active {
	text-decoration: underline;
	color: #E8D4A3;
	}



/* ROUNDED BOX*/

.rounded{display:block}
.rounded *{
  display:block;
  height:1px;
  overflow:hidden;
  font-size:.01em;
  background:#C1A571}
.rounded1{
	margin-left:3px;
	margin-right:3px;
	padding-left:1px;
	padding-right:1px;
	border-left:1px solid #d7bf8d;
	border-right:1px solid #d7bf8d;
	background:#cab07d
}
.rounded2{
  margin-left:1px;
  margin-right:1px;
  padding-right:1px;
  padding-left:1px;
  border-left:1px solid #e4cf9e;
  border-right:1px solid #e4cf9e;
  background:#c8ad7a}
.rounded3{
  margin-left:1px;
  margin-right:1px;
  border-left:1px solid #c8ad7a;
  border-right:1px solid #c8ad7a;}
.rounded4{
  border-left:1px solid #d7bf8d;
  border-right:1px solid #d7bf8d}
.rounded5{
  border-left:1px solid #cab07d;
  border-right:1px solid #cab07d}
.roundedfg{
	background:#C1A571;
	padding-left: 6px;
	padding-right: 6px;
	text-align: right;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 22px;
}


.twoColFixLtHdr #container {
	width: 920px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 12px;
} 
.twoColFixLtHdr #header {
	padding: 0 0px 0 0px;
	background-image: url(images/menu_03.gif);
	height: 160px;
	background-repeat: no-repeat;
	background-position: center;
} 
.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 */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 380px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px 10px 15px 12px;
	height: 480px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
}
.twoColFixLtHdr #mainContent {
	margin: 0 0 0 0px; /* 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: 10px 0px 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	color: #301C00;
} 
.twoColFixLtHdr #footer {
	width: 100%;
	border-top: solid #633b00 10px;
	margin-left: auto;
	margin-right: auto;
	background-color: #FFF3CE;
} 
.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 */
}
.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;
}
.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:0;
    font-size: 1px;
    line-height: 0px;
}
.menutxt {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 21px;
	color: #E8D4A3;
	font-weight: bold;
}
.twoColFixLtHdr #textheader {
	padding: 100px 10px 10px 28px;
}
.twoColFixLtHdr #sidebar_content {
	float: left; /* since this element is floated, a width must be given */
	width: 260px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px 10px 15px 12px;
	height: 300px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
}
.submenutxt {
	color: #633B01;
	background-color: #C1A571;
}

.gallerytxt {
	color: #633B01;
	font-size: 12px;
}

.gallerytxt a:link {
	color: #633B01;
	text-decoration: underline;
}

.gallerytxt a:visited {
	text-decoration: none;
	color: #633B01;
}
	
.gallerytxt a:hover {
	color: #633B01;
	text-decoration: underline;
	
}

.gallerytxt a:active {
	text-decoration: underline;
	color: #633B01;
}

.twoColFixLtHdr #rightsubcontent {
	padding: 10px 20px 10px 300px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 18px;
	color: #422800;
}

.imageborder {
	padding: 10px 10px 6px 10px;
	border: none;
}
.twoColFixLtHdr #container #rightsubcontent table tr td form table tr td {
	font-size: 12px;
}

