

body {
	font-family: verdana, sans-serif;
	color: rgb(19, 57, 25);
	background-color: #000;
	margin:10px;
	}

p  {
	font-size: 11px;
	line-height: 1.5;
	text-align: justify;
	margin-left: 20px;
	margin-right: 20px;
	}
	
li { margin-left: 20px;
	line-height: 1.75;
	font-size: 12px;
	text-align: justify;
	}
	
/*HEADING STYLES*/

h1, h2 {  /*This will make h1 and h2 the same*/
	font-family: Georgia, serif;
	color: #333;
	font-weight: normal;
	font-size: 25px;
	text-align: Left;
	}

h2 { font-size: 14px; /*This makes h2 JUST change size and keep the values from above*/
	/*text-transform: uppercase; This is commented out because we wanted to test the difference with font-variant using small caps... looks about the same*/
	font-variant: small-caps;
	letter-spacing: 5px;
	margin-left: 10px;
	margin-right: 20px;
	border-bottom: 1px solid #000;
	}

h1 {
	color: #fff;
	padding: 5px;
	margin-top: 0;
	background: url(images/bg.jpg) repeat-x;

	}
	
/*LINK STYLES*/

a:link {text-decoration: none;
		color: #ffffff;
		}

a:visited {text-decoration: none;
		color:#eeeeee;
		}

a:hover {text-decoration: underline;
		color: #fff;
		background-color: #000;
		}

a:active {text-decoration: underline;
		color: #fff;
		}

/*CLASSES AND DIV ID'S*/

.intro {
	margin: 15px 40px 20px 40px;
	background-color: #fff;
	padding: 4px;
	border: 4px double #333;
	}
	
#wrap {
		background-color: rgb(130, 173, 137);
		margin: 0 auto;/*This is 0 top and bottom margin and auto left and right... this will center the website!*/
		width: 700px;
	}

#header {
		height: 80px;
		background: url(images/gbg.jpg) repeat-x;
		}
		
#nav {
		font-size: 28px;
		width: 150px;
		background-color: #ccc;
		float: left; /*choices are left or right*/
		}
		
#content {
		border-left: 1px solid #000;
		margin-left: 190px;
		
		}

#footer {
		text-align: justify;
		padding: 10px;
		border-top: 1px solid #333;
		clear: left;/*clearing the left float from above on the "nav div"*/
		}