@charset "UTF-8";
body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
	background: #666;
	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: #000;
}
#container {
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #e2e9f1 url(images/sidebg.gif) repeat-y 0px 100px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #fff;
	border-top: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	border-bottom: 6px solid #fff;
}
#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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#mainContent {
	padding: 0;
}
#mainContent td#navCell {
	width: 195px;
}
#mainContent td#contentCell {
	padding: 0 25px 0 50px;
}
#footer {
	padding: 0 15px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#24408e;
	color: #fff;
	font-size: 85%;
	border-top: 6px solid #fff;
}
#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 */
}

/* Styles for side nav bar */

td#navCell ul {
	margin: 15px 0;
	padding: 0 15px;
	list-style: none;
}
td#navCell ul a {
	display: block;
	margin: 1px 0;
	padding: 5px 2px 7px 2px;
	border-bottom: 1px dotted #7295b9;
	color: #bccddd;
	text-decoration: none;
}
td#navCell ul a:hover {
	color: #fff;
}

/* State navigation for sidebar nav */

#sectionHome td#navCell ul a#navHome,
#sectionCalendar td#navCell ul a#navCalendar,
#sectionEvents td#navCell ul a#navEvents,
#sectionNews td#navCell ul a#navNews,
#sectionDirectory td#navCell ul a#navDirectory,
#sectionGrants td#navCell ul a#navGrants,
#sectionArt td#navCell ul a#navArt,
#sectionAbout td#navCell ul a#navAbout,
#sectionContact td#navCell ul a#navContact,
#sectionJoin td#navCell ul a#navJoin,
#sectionLinks td#navCell ul a#navLinks {
	color: #fff;
	font-weight: bold;
}

td#navCell ul ul {   /* Turn off sub nav lists for all sections, turn back on for specific sections below */
	display: none;
}

#sectionEvents td#navCell ul ul#navEventsSub,
#sectionGrants td#navCell ul ul#navGrantsSub,
#sectionAbout td#navCell ul ul#navAboutSub {
	display: block;
}

/* Styles for sub nav lists */

td#navCell ul ul a {
	margin: 0;
	padding: 2px 0;
	color: #bccddd;
	text-decoration: none;
	border-bottom: 1px dotted #7295b9;
}
td#navCell ul a:hover {
	color: #fff;
}

/* Styles for main content area */

#mainContent td#contentCell h1 {
	color: #24408e;
	font-size: 140%;
	font-family: Arial, Helvetica, sans-serif;
	border-bottom: 1px solid #24408e;
}
#mainContent td#contentCell h2 {
	color: #24408e;
	font-size: 140%;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
}
#mainContent td#contentCell h3 {
	color: #24408e;
	font-size: 120%;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
}

/* Misc. Styles */

.ruleBelow {
	border-bottom: 1px solid #24408e;
}
.ruleAbove {
	padding-top: 5px;
	border-top: 1px solid #24408e;
}
.photoRight {
	float: right;
	margin: 0 0 10px 15px;
}
.photoLeft {
	float: left;
	margin: 0 15px 10px 0;
}
.photoRow {
	padding-right: 8px;
}

div#sidebarExtras {
	padding: 16px;
}