* {
	margin: 0px;
	padding: 0px;
}

body {
	background-image: url("../media/body-background.jpg");
}

h1 {
	font-family: Verdana, sans-serif;
	font-size: 2em;
	padding-left: 10px;
}

h2 {
	color: darkblue;
	font-family: Tahoma, Verdana, sans-serif;
	font-size: 1em;
}

header {
	margin: auto;
	margin-top: 50px;
	height: 160px;
	width: 1250px;
	background-image: url("../media/header_background.jpg");
}

main {
	box-sizing: border-box; /*Prevents following padding from changing the div size*/
	padding: 0px 21px;
	margin: auto;
	width: 1250px;
	background-image: url("../media/main_background_blank.jpg");
	background-size: 100% 100%;
}

main p {
	font-family: "Courier", sans-serif;
	font-weight: bold;
	/*padding-left: 10px; Re-add this after content is added, this was commented to center "Please check back soon"*/
}

main ul {
	list-style-type: none;
}

main ul li {
	padding: 3px;
	font-family: "Courier", sans-serif;
}

main a:link {
	color: blue;
	text-decoration: none;
	font-weight: bold;
}

main a:visited {
	color: blue; /*Links should not change color depending on visited*/
}

main a:hover {
	color: white;
	background-color: darkblue;
}

nav {
	float: right;
	padding-top:25px;
	padding-right:25px;
	text-decoration: none;
	list-style-type: none;
}

/* NAVIGATION MENU*/
#nav_home {
	background-image: url("../media/nav/home.png");
}

#nav_home:hover {
	background-image: url("../media/nav/hover_home.png");
}

#nav_contact {
	background-image: url("../media/nav/contact.png");
}

#nav_contact:hover {
	background-image: url("../media/nav/hover_contact.png");
}
/*END NAVIGATION MENU*/

nav p {
	list-style-type: none;
	margin-top: -5px;
}

footer {
	color: lightgray;
	text-align: center;
	margin: auto;
	box-sizing: border-box;
	padding-top: 2px;
	width: 1250px;
	height: 21px;
	font-family: Courier, sans-serif;
	background-image: url("../media/footer_background.jpg");
}

footer a {
	font-weight: bold;
	text-decoration: none;
	color: lightblue;
}

iframe {
	width: 1204px;
	height: 1000px;
}

.left-sidebar {
	float: left;
}

.right-sidebar {
	float: right;
}

.content {
	padding: 10px;
}

.content-white {
	border-top-style: solid;
	border-bottom-style: solid;
	border-color: darkblue;
	border-width: 1px;
	/*box-shadow: 0px 0px 5px #888888;*/
	background-color: white;
	padding: 10px;
}

.content-white p {
	/*text-indent: 50px; Re-add this after content is added, this was commented to center "Please check back soon"*/
}

.content-magenta {
	border-top-style: solid;
	border-bottom-style: solid;
	border-color: darkblue;
	border-width: 1px;
	/*box-shadow: 0px 0px 5px #888888;*/
	background-color: purple;
	padding: 10px;
}

.content-magenta h1 {
	color: white;
	font-family: Arial, sans-serif;
}

.content-magenta h2 {
	color: blue;
	font-family: Arial, sans-serif;
	font-size: 1.5em;
	font-style: italic;
	text-shadow: -1px -1px 0 #FFF, 1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px 1px 0 #FFF; /* Simulated font outline */
}

.content-magenta p {
	text-indent: 50px;
}

.feature-container {
	text-align: center;
	margin: auto;
}

.feature {
	background-color: white;
	margin: 10px;
	border-style: solid;
	border-width: 1px;
	border-color: darkblue;
	border-radius: 5px;
	/*box-shadow: 0px 0px 5px #888888;*/
	display: inline-table;
	text-align: center;
	width: 250px;
}

.feature h2 {
	text-decoration: underline;
}

.feature p {
	margin-right: 10px;
	font-size: .85em;
}

.house-web-link {
	display: inline-table;
}

#site-logo {
	float: left;
	padding-top: 20px;
	padding-left: 35px;
}

#home-banner {
	margin-bottom: -5px;
}

#home-description {
	margin: auto;
	width: 695px;
	text-align: center;
}

#home-description p {
	color: darkslategrey;
}