@charset "utf-8";
body  {
	font: 80% 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-color: #3D3925;
	background-image: url(../images/bgBeighTexture2.jpg);
}
.twoColFixRtHdr #container {
	width: 780px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #A29B7E;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFDF4;
	background-repeat: repeat-y;
} 
.twoColFixRtHdr #header {
	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. */
	background-color: #EBE3CE;
	background-image: url(../images/bgBeigeLight.gif);
	border-bottom-width: medium;
	border-bottom-style: double;
	border-bottom-color: #A29B7E;
} 
.twoColFixRtHdr #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 */
}
.twoColFixRtHdr #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: 15px 10px;
}
.twoColFixRtHdr #mainContent {
	margin: 0 0 0 250px; /* 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;
} 
.twoColFixRtHdr #footer {
	padding: 0 10px 0 20px;
	border-top-width: medium;
	border-top-style: double;
	border-top-color: #F0EBD8;
} 
.twoColFixRtHdr #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;
}
.small {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 80%;
	font-style: italic;
}

h1,h2,h3,h4,h5,h6 {
	font-family: Arial, Helvetica, sans-serif;
}
a:link {
	color: #663300;
	text-decoration: underline;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
a:visited {
	text-decoration: underline;
	color: #666633;
	border-bottom-style: none;
	border-top-style: none;
	border-right-style: none;
	border-left-style: none;
}
a:hover {
	text-decoration: none;
	color: #D08504;
	background-color: #E2E0C1;
}
a:active {
	text-decoration: none;
	color: #660000;
	border-bottom-width: thin;
	border-bottom-style: dotted;
	border-bottom-color: #A29B7E;
}

h1 {
	font-size: 130%;
	color: #666633;
	background-color: #E4E3CF;
	margin-left: -10px;
	border-top-width: thin;
	border-left-width: 2px;
	border-top-style: dotted;
	border-left-style: none;
	font-weight: bold;
	padding-top: 4px;
	padding-right: 4px;
	padding-bottom: 4px;
	padding-left: 4px;
	border-top-color: #996600;
	border-left-color: #D08504;
}
h2 {
	font-size: 120%;
	color: #996600;
	margin-left: -10px;
	padding: 4px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 2px;
	border-top-style: dotted;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-bottom-color: #A29B7E;
	border-top-color: #A29B7E;
	border-right-color: #A29B7E;
	border-left-color: #A29B7E;
}
h3 {
	font-size: 110%;
	color: #660000;
	font-weight: bold;
}
h4 {
	font-size: 100%;
	font-weight: bold;
	color: #666633;
}

#navcontainer
{
	width: 100%;
	margin: 0 auto;
	padding: 1em 0;
	font-family: "Trebuchet MS", sans-serif, Helvetica;
	font-size: 12px;
	text-align: center;
	text-transform: none;
	background-image: url(../images/bgBeighTexture.jpg);
	font-weight: bold;
	border: 1px dotted #565656;
}

ul#navlist
{
	text-align: left;
	list-style: none;
	padding: 0;
	margin: 0 auto;
	width: 90%;
}

ul#navlist li
{
display: block;
margin: 0;
padding: 0;
}

ul#navlist li a
{
	display: block;
	width: 100%;
	color: #000033;
	text-decoration: none;
	padding-top: 0.5em;
	padding-right: 0.5em;
	padding-bottom: 0.5em;
	padding-left: 1em;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #ffe;
	border-right-color: #aaab9c;
	border-bottom-color: #A39C7F;
	border-left-color: #fff;
	background-image: url(../images/bgBeigeHash.jpg);
}

#navcontainer ul#navlist li a 
{ width: auto; 
}

ul#navlist li#active a
{
	color: #000066;
	background-color: #E4E3CF;
	background-image: url(../images/bgBeigeLight.gif);
}

ul#navlist li a:hover, ul#navlist li#active a:hover
{
	color: #E2E1CD;
	border-color: #aaab9c #fff #fff #ccc;
	background-color: #E1E1D6;
	background-image: url(../images/bgBeighTexture.jpg);
}
#pullquote {
	background-color: #DBDBCE;
	border: thin dotted #D08504;
	padding: 6px;
}
.photoBorder {
	border: medium ridge #58533F;
}
