@charset "utf-8";
body {
	font: 100% Verdana, Neuropol;
	background: #666666;
	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;
}
.BC #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 20px auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.BC #container h1 {
	font: Verdana;
	font-weight: bold;
	color: #59636D;
	font-size: 24px;
}
.TextHighlight {
	font: Verdana;
	font-weight: bold;
	font-style: italic;
	color: #B76F28;
	font-size: 16px;
}
.BC #container a {
	font: Verdana;
	font-weight: bold;
	color: #59636D;
	text-decoration: none;
}
.BC #container a:hover {
	font: Verdana;
	font-weight: bold;
	color: #B76F28;
	text-decoration: none;
}
.BC #header {
	background: #59636D;
	height: 164px; 
	padding: 0 0 0 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. */
}
.BC #navigation {
	background: #B76F28;
	background-image:url(Images/BC_Nav.png);
	height: 38px;
	padding: 0 10px 0 10px;
}
.BC #navigation ul {
	list-style-type: none;
	width: 100%;
	margin: 0px;
	padding: 0;
}
.BC #navigation li {
	float: left;
	margin-top: 10px;
}
.BC #navigation a {
	padding: 20px;
	font: Verdana;
	font-weight:bold;
	color: #FFFFFF;
	text-decoration: none;
}
.BC #navigation a:hover {
	padding: 20px;
	font: Verdana;
	font-weight:bold;
	color: #59636D;
	text-decoration: none;
}
.BC #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
.BC #footer {
	height: 32px;
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #59636D;
	background-image:url(Images/BC_Footer.png);
}
.BC #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 */
	font: Verdana;
	font-size: 12px;
	float: right;
	color: #FFFFFF;
}
.BC #footer ul {
	list-style-type: none;
	width: 100%;
	margin: 0px;
	padding: 0;
}
.BC #footer li {
	float: left;
	margin-top: 9px;
	font: Verdana;
	font-size: 12px;
	color: #FFFFFF;
}
.BC #footer a {
	padding: 20px;
	font: Verdana;
	font-weight: bold;
	color: #FFFFFF;
	font-size: 12px;
	text-decoration: none;
}
.BC #footer a:hover {
	padding: 20px;
	font: Verdana;
	font-weight: bold;
	color: #B76F28;
	font-size: 12px;
	text-decoration: none;
}