@charset "utf-8";

body {

	font: 100% "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
	background: #E0E0E0;
	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: #004280;
}

#container {
width: 80%;  /* this will create a container 80% of the browser width */
	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. */
}

#header {
	background: #DADADA;
	text-align: left;
	padding-bottom: 1px;
}

#header h1 {
	padding-left: 10px;
}

#logo, #navigation {
	padding-left: 10%;
}

#mainContent #left {
	float: left;
	width: 48%;
}

#mainContent #right {
	float: right;
	width: 48%;
}

/* NAVIGATION SECTION */

#navigation li{
	display: inline;
	list-style-type: none;
	padding-right: 2%;
	padding-left: 2%;
	border-right: solid 1px black;
}

#navigation li a {
	color: #008CD2;
	text-decoration: none;
}

#navigation li a:visited {
	color: #004280;
	text-decoration: none;
}

#navigation li a:hover {
	color: #F57E20;
	text-decoration: none;
}

#mainContent p a {
	color: #008CD2;
	text-decoration: none;
}

#mainContent p a:visited {
	color: #004280;
	text-decoration: none;
}

#mainContent p a:hover {
	color: #F57E20;
	text-decoration: none;
}

li#navfirst {
	padding-left: 0;
}

li#navlast {
	border-right: hidden;
}

/* FOOTER SECTION */

#footer {
	clear: both;
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
} 

#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 */
}