@charset "utf-8";
/* CSS Document */

.brown {color: #6D181F}
body  {
	background: #f2e6c9;
	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: left;
	margin-left: 0px;
}
body,td,th {
	font-family: Arial, Helvetica, sans-serif;
	padding: 0px;
}
h1 {
	font-size: 18px;
	line-height: 1em;
}
a:link {
	color: #FFFFFF;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	color: #B07778;
}
a:visited {
	text-decoration: none;
	color: #FFFFFF;
}
a:active {
	text-decoration: none;
	color: #000000;
}
#container {
	width: 750px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* 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. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-left: 0px;
} 
#header {
	padding: 0;
	margin: 0;
	background-color: #5E4A4B;
} 
#navTop {
	height:25px;
	text-align: center;
	background-image: url(assets/barBG.jpg);
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
}
#navTop a {
	padding-right: 6px;
	padding-left: 6px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #513132;
	border-left-color: #513132;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 175px;
	padding-left: 13px;
	line-height: 1.5em;
}
#sidebar1  .lnav_mid1  a:hover {
	color: #523233;
}
#sidebar1   .lnav_mid1   a:link {
	font-weight: bold;
	color: #000000;
	text-decoration: none;
	font-size: 12px;
	margin-top: 5px;
}
#sidebar1 .lnav_mid1 a:visited {
	font-weight: bold;
	color: #000000;
	text-decoration: none;
	font-size: 12px;
	margin-top: 5px;
}
.lnav_mid1 ul {
	list-style-type: none;
	padding: 8px 0 6px 0;
	margin: 0px;
}
.lnav_mid1 {
	width: 138px;
	padding-right: 10px;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
}
.lnav_mid1 li {
	line-height: 1.2em;
	padding: 3px 0 3px 0;
}
.lnav_top {
	width: 152px;
	height: 20px;
	text-align: left;
	padding-top: 4px;
	font-weight: bold;
	font-size: 12px;
	background-color: #523232;
	padding-left: 8px;
	background-image: url(assets/barBG.jpg);
	padding-bottom: 4px;
}
.lnav_cont {
	margin-top: 20px;
	width: 160px;
	background-color: #f2e6c9;
	border: 1px solid #832C34;
}
.lnav_mid {
	width: 138px;
	padding-right: 10px;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
}
.lnav_bottom {
	width: 158px;
	height: 6px;
}
#mainContent {
	margin-top: 30px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 200px;
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 0px;
	font-size: 12px;
	color: #333333;
} 
#mainContent a:link {
	color: #713E3E;
}
#mainContent a:hover {
	color: #000000;
}
#mainContent a:visited {
	color: #713E3E;
}
#mainContent .title {
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #f2e6c9;
	margin-bottom: 20px;
	padding-bottom: 0px;
}
.title h1 {
	margin-bottom: 6px;
}
#footer {
	background-color: #8D5757;
	font-size: 9px;
	margin-top: 15px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	height: 30px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #832C34;
} 
#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;
}
.black12 {
	color: #333333;
	font-size: 12px;
}
.white {color: #FFFFFF}

