@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #725B42;
	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:#666666;
}
a:link {
	color: #666666;
	text-decoration:none;
}     /* unvisited link */
a:visited {
	color: #666666;
	text-decoration:none;
}  /* visited link */

a:hover {
	color: #333333;
	text-decoration:none;
}   /* mouse over link */


a:active {
	color: #666666;
	text-decoration:none;
}   /* selected link */


#container {
	width: 714px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	height:100%;
	min-height:450px;
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 15px solid #a39484;
	border-top: none;
	border-bottom:none;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 25px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
	padding-top:25px;
	padding-bottom:25px;
}
#header {
	height: 25px;
	padding-top: 0;
	padding-right: 10px;
	margin-bottom: 20px;
	padding-left: 20px;
}
#front-header {
	height: 25px;
	padding-top: 100px;
	padding-right: 10px;
	margin-bottom: 5px;
	padding-left: 20px;
}

#header li, #front-header li {
	list-style:none;
	display:inline;
	font-family: Arial, Helvetica, sans-serif;
	color:#333333;
	font-size: 12px;
	padding:0;
	padding-bottom: 5px;
}
#header ul, #front-header ul {
	display:inline;
	clear:right;
	margin-top:5px;
	padding-left:20px;
	margin-left:0;
}
#header h1, #front-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: 0;
	color:#666666;
	font-family: Georgia;
	font-size: 18px;
	font-weight:lighter;
	text-transform:uppercase;
	display: inline;
	float:left;
}
#nav {
	color:#444444;
	display:block;
	clear:right;
	font-size: 12px;
	padding-top: 2px;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 160px;
	min-height:500px;
	height: 100%;
	font-family: Arial, Helvetica, sans-serif;
	font-size:14px;
	margin:0;
	padding:0;
	padding-top:2px;
	
}

#sidebar2 {
	float: left; /* since this element is floated, a width must be given */
	width: 160px;
	min-height:500px;
	height:100%;
	font-family: Arial, Helvetica, sans-serif;
	font-size:14px;
	margin:0;
	margin-left:20px;
	padding:0;
	padding-top:2px;


}
#sidebar1 p, #sidebar2 p {
	padding:0;
	margin:0;
}
#sidebar1 h3, #sidebar2 h3, #mainContent h3 {
	margin:0;
	padding:0;
	padding-left: 20px;
	color:#666666;
	font-family: Georgia;
	font-size: 14px;
	font-weight:lighter;
	text-transform:uppercase;
}

#mainContent h3 {padding:0;padding-bottom:5px;}
#sidebar ul, #sidebar2 ul {
	padding:0;
	margin:0;
	
}
#sidebar li, #sidebar2 li {
	margin-left:0;
	padding-left:0;
}
#mainContent {
	height:100%;
	width: 100%;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 200px;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
}
#mainContent ul {list-style:none;padding:0;margin:0;margin-top:30px;}
#mainContent li {font-size:12px; padding-bottom:5px;padding-left:5px;}

#mainContent p {
	padding:0;
	padding-bottom:10px;
	margin:0;
	font-size:13px;
	width: 450px;
}
#mainContent ul {
	padding-left: 20px;
}

#mainContent p {

padding-left:20px;
}

#indexContent {
	width: 100%;
	height:100%;
	margin: 0;
	padding: 0;
}
#indexContent ul {
	padding:0;
	padding-left:20px;
	margin:0;
}
#indexContent li {
	padding:0;
	margin:0;
	padding-left:10px;
	padding-bottom:10px;
	list-style:none;
	display:inline;
	float:left;
	font-size:12px;
	font-weight:lighter;
}
#indexContent li img {
	
	clear:both;
	
}
#footer {
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 0;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: 400px;
}
#footer p {
	font:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#333333;
	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 */
	text-align:left;
}
.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;
}
.current-page  {
	color:#333333;
	text-decoration:none;
}
