body{
	background-color: #BFB6B4;
	font-family: Helvetica, sans-serif;
	
	}

#container1{
	background-image:url('imagefolder2/HP2image.jpg');
	background-repeat:no-repeat;
	width: 900px;
	min-height: 700px;
	margin: 0px auto;
	}

h1{
	margin: 100px 0px 0px 40px;
	padding: 180px 0px 3px 260px;
	color: #F5F3F0;
	font-size: 42px;
	font-weight: lighter;
	letter-spacing: 5px;
	
	}
	
h2{
	margin: 60px 0px 0px 0px;
	padding: 3px 3px 3px 3px;
	color: #F5F3F0;
	font-size: 35px;
	font-weight: lighter;
	letter-spacing: 3px;
	float: right;
	width: 465px;

	
	}

h4{
	margin: 0px 0px 0px 0px; 
	padding: 40px;
	line-height: 10px;	
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 1px;
	display: inline;
	text-decoration:none;
	}

	
#content{
	list-style-type: none;
	margin: 110px 0px 0px 60px;
	padding: 20px 0px 0px 0px;
	font-size: 22px;
	font-weight: lighter;
	line-height: 35px;
	width: 600px;
	float:left;
	color: #F5F3F0;
	
	}
	
	a:link{
	color: #F5F3F0;
	text-decoration: none;
	}
	
a:visited{
	color: #BFB6B4;
	}
	
a:hover{
	color: white;
	}	
	

#navheader{
	background-image:url('imagefolder2/Hdrimage.jpg');
	background-repeat:no-repeat;
	width: 900px;
	min-height: 200px;
	margin: 0px auto;
	
	}	

#name{
	margin: 45px 0px 0px 40px;
	padding: 3px 0px 48px 15px;
	color: #F5F3F0;
	font-size: 35px;
	font-weight: lighter;
	letter-spacing: 3px;
	float: left;
	width: 390px;

	}

#title{
	margin: 45px 0px 0px 0px;
	padding: 3px 0px 48px 6px;
	color: #F5F3F0;
	font-size: 35px;
	font-weight: lighter;
	letter-spacing: 3px;
	float: right;
	width: 415px;

	}
	



	
#container2{
	background-image:url('imagefolder2/Navbkgnd.jpg');
	background-repeat:no-repeat;
	width: 900px;
	min-height: 800px;
	margin: 0px auto;
	}	
	
#thumbnails{
	width: 900px;
	height: 420px;
	margin: 67px 0px 0px 56px;
	}	
	
#thumbnails img {
	margin: 10px;	
	}	
	
#photocredits{
	float: left;
	margin: 38px 0px 0px 65px;
	font-size: 10px;
	color: #7B7EA6;
	width: 400px;
	}

#show{
	float: left;
	margin: 30px 0px 0px 250px;
	font-size: 20px;
	color: #7B7EA6;
	}
	
#contact{
	float: right;
	text-align: right;
	margin: 80px 80px 50px 0px;
	padding: 7px 0px 80px 120px;
	font-size: 18px;
	color: #7B7EA6;
	}

#bio{
	width: 740px;
	height: 390px;
	margin: 0px 75px 0px 85px;
	padding: 50px 0px 0px 0px;
	color: #7B7EA6;
	font-size: 18px;
	line-height: 23.5px;
	letter-spacing: 1px;
	text-align: justify;
	}
	
#container3{
	background-image:url('imagefolder2/Navbkgnd.jpg');
	width: 900px;
	min-height: 4500px;
	margin: 0px auto;
	}
				
#resume{
	width: 640px;
	margin: 0px auto;
	padding: 20px 40px 0px 100px;
	color: #7B7EA6;
	font-size: 18px;
	text-align: left;
	}	
	
#container4{
	background-image:url('imagefolder2/Navbkgnd.jpg');
	width: 900px;
	min-height: 1450px;
	margin: 0px auto;
	}				
	

#columns{
	margin: 30px 0px 0px 0px;
	padding: 140px 0px 0px 0px;
}

#nav{

	/* Clear floats */
	float:left;
	width:95%;
	/* Bring the nav above everything else--uncomment if needed.
	position:relative;
	z-index:5;
	*/
}
#nav li{
	float:left;
	margin-right:0px;
	position:relative;
	text-decoration:none;
}
#nav a{
	display: block;
	padding:3px;
	color: #E8DEDC;
	background:rgba(10,40,100,0.01);
	text-decoration:none;
}
#nav a:hover{
	color: white;
	background:rgba(10,40,100,0.2);
	text-decoration:none;
}

/*--- DROPDOWN ---*/
#nav ul{
	background:rgba(0,0,255,0); /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
	 /* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
	list-style:none;
	position:absolute;
	left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
}
#nav ul li{
	padding-top:3px; /* Introducing a padding between the li and the a give the illusion spaced items */
	float:none;
}
#nav ul a{
	white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
}
#nav li:hover ul{ /* Display the dropdown on hover */
	left:-40px; /* Bring back on-screen when needed */
}
#nav li:hover a{ /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
	background:rgba(10,40,100,0.5);
	text-decoration:none;
}
#nav li:hover ul a{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
	text-decoration:none;
}
#nav li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
	background:#333;
}