@charset "utf-8";
body  {
	background: #066;
	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;
}
#header {
	font-family: Arial, Helvetica, sans-serif;
	color: #333;
	background: #FFDEA0;
	height: 85px;
}
#container  {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFF url(images/bg-container.png);
	margin: 0 auto;
	text-align: left;
} 

#sidebar1  {
	float: right; /* since this element is floated, a width must be given */
	width: 185px; /* 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 */
	background: #FFF0D4; /* the background color will be displayed for the length of the content in the column, but no further */
	font-size: 0.85em;
	color: #000;
	margin: 5px;
}
#footer  { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFDEA0; 
} 
#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 */
}
.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;
}
#content {
	width: 585px;
	margin: 0px;
	padding: 0px;
}
#content h1, #content h2, #content h3, #content h4, #content h5, #content p, #content ul, #content ol, .listholder{
	margin-right: 20px;
	margin-left: 20px;
}

h1, h2, h3 {
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #784026;
	font-style: italic;
}
h1{
	font-size: 175%;
}
h2 {
	font-size: 150%;
}
.listholder {
	margin-left: 100px;
	color: #999;
}
#nav  {
	text-align: center;
	margin: 20px 0 0 0;
	float: right;
	width: 400px;
	font-size: 0.9em;
	line-height: 135%;
}
#nav a:link,#nav a:visited {
	color: #6B422C;
	text-decoration: none;	
	padding-bottom: 5px;
}
#nav a:hover,#nav a:active {
	text-decoration: none;
	background: url(images/nav-bg.png) repeat-x left bottom;
	padding-bottom: 5px;
}
#home_pg a#home_menu,
#newsletter_pg a#newsletter_menu,
#schedule_pg a#schedule_menu,
#personnel_pg a#personnel_menu,
#services_pg a#services_menu,
#contacts_pg a#contacts_menu,
#documents_pg a#documents_menu {
	font-weight: bold;
}
.caption {
	font-size: 80%;
	text-align: center;
}
.floatLeft30pct {
	float:left;
	width:30%;
}
.photoLeft {
	float: left;
	margin-right: 10px;
}
.photoRight {
	float: right;
	margin-left: 10px;
}

