@charset "UTF-8";
body {
	background: #b4de00;
	margin: 0;
	padding: 0;
	color: #00257A;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}

/* ~~ this fixed width container surrounds all other divs~~ */
.container {
	width: 100%;
	margin: 0px;
	position: relative;
}
.header {
	margin: 0px;
	height: 175px;
	width: 100%;
	top: 0px;
}
.content {
	width: 100%;
	background-image: url(images/concrete_strip.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	margin: 0px;
	height: 375px;
}
.image {
	height: 100%;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	position: relative;
	width: 350px;
}
.footer {
	width: 100%;
	padding-top: 22px;
}
p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	line-height: 1.4em;
	font-weight: normal;
	color: #00257A;
	text-decoration: none;
	text-align: center;
}
