/*
      Author: Kevin Christopher
      Date:   28 July 2017 
*/

/* Display major elements as blocks */
header, section, aside, footer, nav {
	display: block;
}

/* Set default margin and padding */
body * {
	padding: 0px;
	margin: 0px;
}

/* Sets background color and font family */
body {
	background-color: #964B00;
	font-family: Verdana, Geneva, sans-serif;
}

/* Container for page content*/
#wrapper {
	width: 1000px;
	margin: 0 auto;
	border-left: 1px solid white;
	border-right: 1px solid white;
	border-bottom: 1px solid white;
	background-color: #6B4423;
}

/* Header style */
header {
	background-color: white;
	height: 100px;
	text-align: center;
}

/* Horizontal navigation style */
nav.horizontal {
	height: 70px;
	width: 100%;
	background-color: white;

}

/* Horizontal navigation list item style */
nav.horizontal li {
	background-color: white;
	font-size: 16px;
	height: 50px;
	line-height: 50px;
	width: 180px;
	display: block;
	float: left;
	margin-left: 5px;
	margin-right: 5px;
	text-align: center;
}

/* Horizontal navigation list item hypertext link style */
nav.horizontal a {
	display: block;
	background-color: #6B4423;
	color: white;
	-moz-border-radius: 30px/25px; 
	-webkit-border-radius: 30px 25px; 
	border-radius: 30px/25px;
	text-decoration: none;

}

nav.horizontal a:hover {
	background-color: #CC9966;
	color: black;

}

nav.horizontal ul {
	overflow: hidden;
}

/* Vertical Navigation list style */
nav.vertical {
	float: left;
	width: 200px;
}

/* Vertical Navigation list item style */
nav.vertical li {
	list-style-type: none;
	text-indent: 20px;
	margin-top: 20px;
	margin-bottom: 20px;
}

/* Vertical Navigation list hypertext link style */
nav.vertical a {
	color: white;
	text-decoration: none;
}

nav.vertical a:hover {
	color: black;
}

/* Main content style*/
#main {
	background-color: #FCD6A5;
	float: left;
	width: 750px;
}

#main img {
	padding: 1px;
	border-radius: 5px;
}

/* Main paragraphs */
section p {
	font-size: 20px;
	margin: 15px;
}

/* Footer style */
footer {
	clear: left;
	margin-left: 200px;
	background-color: white;
}

/* Address style*/
footer address {
	border-top: 1px solid white;
	color: black;
	font-size: 10px;
	font-style: normal;
	text-align: center;
	margin-top: 25px;
	padding-bottom: 20px;
}

/* Video style */
.video {
	padding: 1px;

}

.video iframe {
	border: 2px solid #6B4423;
	border-radius: 5px;
}