
img {
	max-width: 100%; /*this rule is added in base.css*/	
}

#container {  /*width and margin taken out*/
	padding: 2px; /*This provides the tiny 'border' effect in white. */
	background-color: #fff; /*white*/
}

header {
	padding: 10px 20px; /*10 refers to top and bottom; 20 refers to left and right*/
	background-color: #ddddbb; /*greeny-grey color*/
}

header h1 {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-weight: bold;
	font-size: 2em;
	color: #191919;
}

header h2 {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-weight: bold;
	font-size: 1.2em;
	color: #191919;
}
	
nav {  /*width taken out*/
	padding: 10px 20px;
	background-color: #b8b894;
	overflow: hidden; /*this rule makes sure nav wraps around the floated list*/
}

nav ul li{
	list-style: none;
	margin: 0 4em 0 0; /*adds space between links in nav*/
	padding: 0;
	float: left; /*The float: left puts the elements side by side and is a technique for laying out horizontal elements.*/
}	

nav ul {
	list-style: none; /*This removes the bullet from the list items*/
	margin: 0;
	padding: 0; /*These collapse the margin and padding*/
	float: left; /*This goes left and collapses the width to fit the links inside it*/
}

nav ul li a{
	color: #000;
	text-decoration: none; /*Takes off underline*/
	font-size: 1.3em;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	padding: 10px 0;
	display: inline-block; /*this makes it easy to fill the browser width and wrap nicely when the browser is resized*/
}

article{
	padding: 20px;
	background: #ebebe0;
}


footer {
	padding: 0px 10px;
	overflow: hidden; /* this makes sure footer wraps around the footer elements*/ 
	text-align: center;
	background-color: #ddddbb;
}









