/*
   Website Final Project

   Main Website Style Sheet
   Author: Daniel Whiting
   Date: 1/28/2016 

   Filename:         npv.css


*/

/* Remove bullets from navigation links */

nav a:link {
	text-decoration: none;
}

/* Styles for the page body */

body{
	font-family: Veranda, sans-serif;
	font-weight: 550;
	background: url(parch.jpg) top left repeat;
	position: relative;
	display: block;
	width: 98%;

}


/* Styles for page header */

header {
	text-align: center;
	width: 100%;
	min-width: 1000px;
	max-width: 1680px;
	height: 210px;
	margin: 0px;
	padding: 0px;
	
	
}

header img {
	-moz-box-shadow: rgba(0, 0, 0, 0.6) 10px 10px 15px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.6) 10px 10px 15px;
	box-shadow: rgba(0, 0, 0, 0.6) 10px 10px 15px;
}

/* Horizontal navigation list */

nav.horizontalNAV {
	margin-left: 10%;
	width: 80%;
	padding: 10px;
}

nav.horizontalNAV li {
	font-size: 125%;
	float: left;
	text-align: center;
	width: 20%;
}

nav.horizontalNAV li a {
	color: black;
	font-size: 20px;
}

nav.horizontalNAV li a:hover {
	color: white;
}

/* Section styles for index page*/

#index {
	padding: 5px;
	margin-top: 0px;
	margin-left: 60px;
	max-width: 90%;
	font-size: 1.0em;
	line-height: 1.6em;

}

#index p:first-of-type:first-letter {
	font-size: 200%;
	font-family: Times New Roman, Times, serif;
}

div ol {
	font-weight: 600;
	position: relative;
	margin-top: 20px;
	margin-left: 510px;
}

/* Section styles for all other pages */

section {
   clear: left;
   margin: 60px;
   margin-top: 10px;
   max-width: 90%;

}

section p {
   margin: 0px 0px 10px 10px;
   padding: 5px;
   font-size: 1.0em;
   line-height: 1.6em;
   
}

section p:first-of-type:first-letter {
	font-size: 200%;
	font-family: Times New Roman, Times, serif;

}

section img {
	float: left;
	margin-right: 20px;
	margin-top: 10px;
	margin-bottom: 10px;
	-moz-box-shadow: rgba(0, 0, 0, 0.6) 10px 10px 15px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.6) 10px 10px 15px;
	box-shadow: rgba(0, 0, 0, 0.6) 10px 10px 15px;
}

div a {
	color: rgb(30, 53, 226);
}

/* Footer styles */

footer {
	display: block;
	width: 100%;
	clear: left;
	text-align: center;
	padding: 10px;
}

footer address {
	display: block;
	width: 100%;
	clear: left;
	margin-top: 20px;
	border-top: 3px solid;
	font-size: 15px;
}


