@charset "utf-8";
body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
}
#container { 
	width: 800px; 	
	background: #fff;
	margin: 0 auto; 
	text-align: left;
} 
#header { 
	position: relative;
	width: 800px;
	height: 164px;
	position: relative;
	background: url(/custom/themes/default/images/header.jpg) no-repeat;
	z-index: 10;
} 

#pageTitles {
	font-weight: normal;
	font-size: 18px;
}



#header #topnav{ 
	position: absolute;
	top: 137px;
	left: 5px;
	z-index: 10;
}

#header h2 {
	margin: 0;
	position: absolute;
	top: 8px;
	left: 30px;
	width: 131px;
	height: 111px;
}



#header h1 {
	position: absolute;
	top: 1px;
	left: 200px;
	color: #fff;
	margin: 0;
	font-size: 16px;
	letter-spacing: 0.3em;
	font-weight: normal;
}

#contentwrap {
	position: relative;
	width: 800px;
	background:url(/custom/themes/default/images/content-tile.gif) repeat-y;
}

#sidebar1 {
	float: left;
	width: 194px;
	margin: 0 10px 0 0;
	background-color: #884848;
	color: #fff;
	font-size: 11px;
}

#sidebar1 h1 {
	color: #ffde00;
	margin: 0px;
	padding: 0px;
	font-size: 16px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
}

#sidebar1 h2 {
	color: #ffffff;
	margin: 0px;
	padding: 0px;
	font-size: 12px;
	font-weight: normal;
}



#mainContent { 
	float: left;
	width: 586px;
	padding: 10px 0 10px 0;
	line-height: 1.55em;
} 

#mainContent strong {
	color: #884848;
}

#mainContent h1#head {
	color: #884848;
	margin: 0;
	font-size: 16px;
	letter-spacing: 0.1em;
	font-weight: normal;
	line-height: 1.55em;
	font-family: "Times New Roman", Times, serif;
	padding: 0 0 0 10px;
}

#mainContent h1#officers {
	float: left;
	width: 566px;
	color: #fff;
	margin: 10px 0 10px 0;
	font-size: 16px;
	letter-spacing: 0.1em;
	font-weight: bold;
	font-family: "Times New Roman", Times, serif;
	padding: 10px;
	background: #884848;
	text-align:left;
	
}

#mainContent #officerwrap ul{
	float: left;
	width: 280px;
	padding: 0px;
	margin: 0px 5px 0 0;
	font-size: 11px;
}

#mainContent #officerwrap ul li {
	padding: 0 0 0 0px;
	margin: 0 0 3px 26px;
}



#footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#000;
	color: #CCCCCC;
} 
#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 */
}

/* Miscellaneous classes for reuse */
.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: 4px;
}
.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;
}
