@charset "utf-8";
body  {
	font: 0.9em Tahoma, 'Lucida Grande', Verdana, Arial, 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; /*#6D4D10; was 000000 */
	background-color: #ffffff;
	background-position: left top;
	vertical-align: top;
}

a:link {
	color: #BD851C;
	text-decoration: none;
}
a:visited {
	color: #BD851C;
	text-decoration: none;
}
a:hover {
	color: #6D4D10;
	background-color: #F8EDCF;
	text-decoration: none;
}
a:active {
	color: #BD851C;
	text-decoration: none;
}

#container {
	width: 920px; /* the auto margins (in conjunction with a width) center the page */
	border: 2px solid #6D4D10;
	text-align: left;
	background-color: #FFFFFF;
	background-image: url(leftbrn.gif);
	background-repeat: repeat-y;
	background-position: left;
	margin-top: 30px;
	margin-right: 0px;
	margin-bottom: 30px;
	margin-left: 0px;
} 

#header {
	margin: 0;
	padding: 0;
	background-color: #FFFFFF;
	/* background-image: url(gradientTile28.png);
	background-repeat: repeat-x;
	background-position: left bottom; */
} 

#header p {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	text-align: right;
	font-size: .8em;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 0;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	vertical-align:top;
	width: 148px;
	padding: 0px;
}

#sidebar1 ul {
/* Menu system */
	list-style: none;
	margin: 0;
	padding: 0;
}

#sidebar1 a {
	display: block;
	border-width: 1px;
	border-style: solid;
	border-color: #ccc #888 #555 #bbb;
	margin: 0;
	text-decoration: none;
	color: #6D4D10;
	padding: 5px;

}

#sidebar1 a:hover {
	background-color: #F8EDCF;
}

#mainContent {
	min-height: 600px;
	margin-top: 15px;
	margin-right: 0;
	margin-bottom: 15px;
	margin-left: 148px;
	padding-top: 0;
	padding-right: 15px;
	padding-bottom: 0;
	padding-left: 15px;
} 
#footer {
	padding: 0 10px 0 20px;
	background-color: #DECB8F;
	text-align: center;
} 
#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: 0.8em;
}
.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;
}

