/*
CSS for John Park's Homepage
*/


* {
	margin:  0;
	padding: 0;
}


/*------------  Body  -------------*/

body {
	font-weight: normal;
	font-size: small;
	font-family: Helvetica, Verdana, Arial, sans-serif;
	background-color: #ffd800;
}

#contentbackground {
	width: 1000px;
	height: auto;
	background-color:white;
	position: absolute;
	top: 80px;
	z-index: 0;
}

#wrapper {
	margin: auto;
	width: 1000px;
}
#main {
	background-color: #ffd800;
	
}
#main p {
	font-size: 425%;
	font-family: Helvetica, sans-serif;
	padding-bottom: 5px;
}
p.a{
	color: red;
	padding-bottom: 5px;
	}
.name {
	color: red;
	font-weight: bold;
	}
	
#goals {
	position: absolute;
	top: 270px;
	left:350px;
	width: 300px;
	border-top: 10px double black;
	padding-top: 15px;
}
#goals h2 {
	color: #6b0c36;
	padding-bottom: 10px;
}
#goals p {
	font-size: small;
	line-height: 150%;
}
#about {
	position: absolute;
	top: 270px;
	left:700px;
	width: 300px;
	border-top: 10px double black;
	padding-top: 15px;
}
#about h2 {
	color: #6b0c36;
	padding-bottom: 10px;
}
#about p {
	font-size: small;
	line-height: 150%;
}

#descript {
	position: absolute;
	padding-top: 15px;
	top: 270px;
	left: 0px;
	width: 300px;
	border-top:  10px double black;
}
#descript h2 {
	color: #6b0c36;
	padding-bottom: 10px;
}
#descript p {
	font-size: small;
	line-height: 150%;
}

/*---------Header Crap------------*/

#header {
	position: absolute;
	top: 78px;
	width: 950px;
	z-index: 2;
}

#header h1 {
	color: #ffd800;
	font-size: small;
	font-family: Helvetica, Verdana, Arial, sans-serif;
	position: absolute;
	top: 20px;
}





/*------Footer NAV------------------------------*/



#footernav {
	position: absolute;
	top: 530px;
	font-family: Helvetica, Verdana, Arial, sans-serif;
	font-size: small;	
}

#footernav li {
	display: inline;
	color: black;
}
#footernav a:link, #footernav a:visited {
	color: black;
	text-decoration: none;
}
#footernav a:hover, #footernav a:active {
	color: #960707;
	text-decoration: underline;
}

/*------NAV------------------------------*/


#navigation {
	position: absolute;
	top: 5px;
	left: 617px;
	z-index: 10;
}

#nav{
	list-style:none;
	font-weight:normal;
	margin-bottom:10px;
	/* Clear floats */
	float:left;
	width: 390px;
	
}
#nav li{
	float:left;
	margin-right:2px;
	position:relative;
}
#nav a{
	display:block;
	padding:8px;
	font-weight: bold;
	color:#fff; 		/*color of link type*/
	background: black;
	font-family: Helvetica, Sans-serif;
	text-decoration:none;
}
#nav a:hover{
	color:#fff;
	background:#6b0c36;
	text-decoration:underline;
}


/*--- DROPDOWN ---*/


#nav ul{
	background:#fff; /* 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). */
	background:rgba(255,255,255,0); /* 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:1px; /* 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:0; /* 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:#6b0c36;
	text-decoration:underline;
}
#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;
}

