* { /* selects all elements and gives them zero margin and padding */
	margin: 0px;
	padding: 0px;
}
body {
	text-align: center;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	background-image: url("../img/bg-tile.jpg");
	background-repeat: repeat-x;
	background-color: #171717;
	font-size: 16px;
	line-height: 1.5em;
}
#container {
	max-width: 800px;
	margin-right: auto;
	margin-left: auto;
	text-align: left;
	background-color: #FFF;
	margin-top: 20px;
	border: 1px solid #CCC;
}

#header h1 a {
	display: block;
	width: 800px;
	height: 140px;
	background-image: url("../img/header-image.jpg");
	/* Pulled directly from https://zeldman.com/2012/03/01/replacing-the-9999px-hack-new-image-replacement/ to hide text */
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}
h2 {
	color:#012034;
}
h3 {
	color: #AD9E43;
}
h4 {
	color: #D68327;
}
#nav {
	background-color: #000;
}
#nav ul {
	list-style-type: none;
	margin-left: 10px;
}
#nav ul li {
	display: inline;
	height: 35px;
	line-height: 35px;
}
#nav ul li a {
	display: inline-block;
	padding-right: 10px;
	padding-left: 10px;
	font-size: 18px;
}
#nav ul li a:link, #nav ul li a:visited {
	text-decoration: none;
	border-bottom-width: 4px;
	border-bottom-style: solid;
	border-bottom-color: #000;
	color: #FFF;
}
#nav ul li a:hover {
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
}
#content {
	margin: 20px;
}
#content p {
	margin-top: 5px;
	margin-bottom: 15px;
}
#footer {
	background-color: #000;
	color: #FFF;
	height: 25px;
}
#footer h5 {
	font-size: 12px;
	line-height: 25px;
	margin-right: 20px;
	margin-left: 20px;
}
.alert {
	background-color: #1A5950;
	color: #FFF;
}
#favorite-site:hover {
	background-color: #F59F40;
}
#content-image {
	float: right;
	margin: 0 0 10px 10px;
	border-radius: 8px;
	border-color: #F59F40;
	border-style: solid;
	border-width: 8px;
}
#top-link {
	margin-left: 200px;
}
#validation-link {
	float: right;
	margin-right: 20px;
}