/* lesson 8 CSS styles */

body { 
	
  color: #600; 
  background: #ffc;
  font: .90em Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}

#wrapper {
  text-align: center;
  margin: auto;
  width:80%
}

	/* Header CSS styles */

#header {
  Background:  url("images/bgfill.gif") repeat-x;
  background-color: #c90;
  height: 50px;
  width: 100%;
  margin: 35px auto 0 auto;
  position: relative;
}

#header h1 {
  padding: 5px;
  margin: 0;
  color: #600;
  text-align: center;
}

	/* NAV CSS styles */
#navbox {
	background-color: #600;
	width: 100%;
}	


#nav {
    margin: 0;
	padding: 0;
	list-style: none;
	float: left;
	font-size: 80%;
}

#nav li {
    margin: 0;
	padding: 0;
	float: left;
	margin: 0 1px 0 0;
	display: inline;
	background-color: #600;
}

#nav a {
	padding: 3px 15px;
	float: left;
	color: #ffc;
	text-decoration: none;
	line-height: 1.3;
}

#nav a:hover {
    color: #600;
	background-color: #c90;
}

	/* content CSS styles */
#main {
	background-color: #fff;
}
#content {
  margin: 0 auto;
  background-color: #fff;
  width: 90%;
  padding: 2% 5% 2% 5%;
  text-align: left;
}


#footer {
  Background:  url("images/bgfill.gif") repeat-x;
  background-color: #c90;
  height: 50px;
  width: 100%;
  margin: 0 auto 35px auto;
  position: relative;
}
	
#footer p {
  color: #600;
  text-align: center;
  font-weight: bold;
  margin: 0;
  padding: 10px 0 0 0;
}

	/* classes CSS styles */

.imgright {
  float: right;
}

.bar {
text-align: center;
}

.topl {
   margin: 0;
   padding: 0;
   position:absolute; top: 0px; left: 0px;
}

.topr {
	margin: 0;
   padding: 0;
   position:absolute; top: 0px; right: 0px;
}

.bottoml {
   margin: 0;
   padding: 0;
   position:absolute; bottom: 0px; left: 0px;
}

.bottomr {
	margin: 0;
   padding: 0;
   position:absolute; bottom: 0px; right: 0px;
}
