@charset "UTF-8";
body {
	font: 75%/1.4 "Trebuchet MS", Arial, Helvetica, sans-serif;
	background-color: #004454;
	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: white;
}

/* Layout Definitions */
#container {
	position: relative;
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 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. */
	background-color: #004454;
}
#header {
	position: relative;
	padding: 0 16px;  /* 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. */
	height: 190px;
}
#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 {
	position: relative;
	margin: 0 18px;
	padding: 25px 20px 70px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-color: rgb(29,75,89);
	background-image: url(../media/bg-standard-no-shadow.jpg);
	background-repeat: none;
	min-height: 280px;
	text-align: center;
	overflow: visible;
}
#footer {
	padding: 30px 16px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	font-size: 85%;
	text-align: center;
}
#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 */
}
#logo {
	position: absolute;
	top: 40px;
	left: 35px;
}
#tagline {
	position: absolute;
	top: 65px;
	left: 505px;
	width: 460px;
	text-align: center;
}

/* Navigation Definitions */
#mainNav {
	font-size: 110%;
	position: absolute;
	bottom: 16px;
	text-align: center;
	width: 928px;
	left: 0;
	clear: both;
}
#secNav {
	display: inline;
	margin-left: 0;
}
#mainNav a, #secNav a {
	color: white;
	text-decoration: none;
}
#mainNav a:focus, #mainNav a:hover, #secNav a {
	text-decoration: underline;
}
#mainNav li, #secNav li {
	display: inline;
	padding: 0 0 0 6px;
	margin: 0 6px 0 0;
	border-left: 1px solid white;
	text-transform: uppercase;
}
#mainNav li:first-child, #mainNav li.firstChild {
	border-left: 0;
}

/* Style Definitions */
a {
	color: rgb(255,196,37);
	text-decoration: none;
}
a:focus, a:hover {
	text-decoration: underline;
}
address {
	display: inline;
	text-transform: uppercase;
	margin-right: 6px;
	font-style: normal;
}
#footer address a {
	color: white;
	text-decoration: underline;
}
dl.directors dt {
	font-weight: bold;
}
dl.directors dt, dl.directors dd {
	font-size: 120%;
}
h1, h2 {
	font-size: 200%;
	line-height: 1.1;
}
h2 {
	font-family: "Times New Roman", Times, serif;
	font-weight: normal;
}
h1, h2, p, ol, ul, dl {
	margin-top: 2em;
}
h1:first-child, h2:first-child, p:first-child, ol:first-child, ul:first-child, dl:first-child,
h1.firstChild, h2.firstChild, p.firstChild, ol.firstChild, ul.firstChild, dl.firstChild {
	margin-top: 0;
}
h6 {
	font-weight: normal;
	text-transform: uppercase;
}
ul li {
	list-style-type: disc;
}
#mainContent ul {
	color: rgb(255,196,37);
}
li, dt {
	margin-top: 1em;
}
ul {
	margin-left: 16px;
}
.footnote {
	font-size: 80%;
	line-height: 1.2;
	font-style: oblique;
}
#mainContent div.actions {
	margin-top: 2em;
}
#mainContent div.actions p {
	margin-top: 1em;
	text-align: center;
}
