/*

Final Project Stylesheet

Author: James Parker
Date:	3/23/16

Filename:	final.css

*/

body
{
	background-color: rgb(240, 255, 255);
}


/* header style */
div
{
	height: 0px;
	width: 0px;
	background-color: rgb(0, 255, 255);
	
}

/* H1 title style */
h1
{

	color: blue;
	text-align: right;
}

/*displays horizontal navigation style */


ul
{
	list-style-type: none;
	margin: 15;
	margin-top: 110px;
	padding-left: 282px;
	padding-right: 14px;
	overflow: hidden;
	background-color: rgb(37, 56, 60);
	font-family: Verdana, Times, sans-serif;
	font-size: 16px;
	
}

li
{
	float: left;
	border-right: 1px solid #bbb;
}

li a
{
	display: block;
	color:	white;
	text-align: center;
	padding:	24px 24px;
	text-decoration: none;
}

li a:hover
{
	background-color: rgb(61, 42, 38);
}

/* Sidebar settings */

.leftsidebar
{
	background-color: rgb(37, 56, 60);
	width: 100px;
	position: absolute;
	left: 9px;
	top: 263px;
	bottom: -500px;
	padding: 14px;
	border-right: 1px solid #bbb;
}

/* Paragraph style */

p
{
	font-size: 22px;
	font-family: Verdana;
	margin-left: 120px;
	padding: 20px;
}

/*Table styles */

table
{
	margin: 200px;
	border-collapse: collapse;
	border: 1px sold black;
	width: 80%;
	
}

tr, th, td
{
	width: 550px;
	height: 50px;
	text-align: left;
	padding: 8px;
}



tr:nth-child(even)
{
	background-color: rgb(86, 109, 126);
}
tr:nth-child(odd)
{
	background-color:rgb(67,191,199);
}

/* Footer Style */
footer
{
	margin-top: 450px;
	width: 850px;
	text-align: right;
	font-family: Times, sans-serif;
	font-size: 22px;
}