@charset "UTF-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #c4af8d;
	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;
}

/*default links style */
a:link, a:active, a:visited {
color: #9e6e5e;
text-decoration: underline;
font-weight: bold;
}

a:hover {
color: #491809;
}

#container { 
	width: 1220px; 
	background: url('images/centerbg.jpg') no-repeat #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. */
} 
#header { 
	background: url('images/topBanner.jpg') repeat #DDDDDD; 
	height: 28px;
	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. */
} 


#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 15px 10px 15px 20px;
}
#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; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#1f1001; 
} 
#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 */
}
.small {
    font-size: smaller;
}
.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;
}


/*navigation menu */
#mainContent #navigation {
width: 100%;
padding: 0;
margin: 10px 0 0 0;
text-align: center;
}

#mainContent #navigation ul {
list-style-type: none;
display: inline;
margin: 0;
padding: 0;

}

#mainContent #navigation ul li {
display: inline;
color: #0d0e0e;
font-family: Arial, Helvetica, sans-serif;
}

#mainContent #navigation ul li a {
color: #0d0e0e;
font-family: Arial, Helvetica, sans-serif;
text-decoration: none;
font-size: 15px;
font-weight: bold;
margin: 0 0 0 19px;
line-height: 25px;
}

#mainContent #navigation ul li a:hover {
color: #63382b;
}


/*Main body text styles */

#mainContent #bodyText {
padding: 0 0 0 90px;

}

#mainContent #bodyText p {
font-size: 12px;
font-family: Verdana, Arial, Helvetica, sans-serif;
color: #000000;
letter-spacing: 1px;
}

#mainContent #bodyText h1 {
color: #491809;
font-weight: bold;
font-size: 20px;
}

#mainContent #bodyText h2 {
color: #491809;
font-weight: bold;
font-size: 16px;
}

#footer p {
color: #999999;
}

