/*
"Michelle LaRae" final layout

Complimentary/Custom Color Scheme:
Grey:  				#6E6C64
Greenish Beige:  	#6E694E
Dark Green (Base): 	#21201B
Blue:				#48436E
Dark Grey:			#1C1B21
*/

body {
	margin: 0;
	padding: 0;
	background: #333333 repeat-x top;
	font-family: Helvetica, sans-serif;
	line-height: 1.4em;
}

/* Use a single rule for elements that share the same properties */
h1, h2, h3, h4, ul, li, p {
	margin: 0;
	padding: 0;
	color: #777;
}

h4 {
	color #fff;
}

a {
	color: #6E6C64;
}

ul {
	list-style-type: none;
}


img {
	border: 5px solid #6E6C64;
}


/* Our friend "margin: 0 auto" shows up again */

#header {
	height: 100px;
}

/*
Use background images in CSS to add visuals
to text
*/

#header h1 {
	padding: 30px 0 15px 30px;
	color: #777;
	font-weight: normal;
	letter-spacing: -1px;
}

#nav {
	margin: 5px 0 0 0;
	padding: 10px;
	background: #21201B;
	border-top: 5px solid #48436E;
}

/*
By default, list items are displayed as a block. We can
override that style with "display: inline" which will cause
the list items to appear next to each other.
*/

#nav ul li {
	display: inline;
	margin: 0 5px 0 5px;
}

#nav a {
	color: #fff;
	text-decoration: none;
}

/* Standard float positioning */
#content {
	margin: 10px 0 0 0;
	padding: 15px;
	color: #fff
	background: #333333;
	float: left;
	width: 505px;
}

#content, #sidebar {
	margin: 40px 0 20px 0;
}

#sidebar p {
	margin: 10px 0 10px 0;
	padding: 5px;
	color: #fff;
}

#content li p {
	margin: 0 0 10px 0;
}


#content p, a {
	color: #fff;
}

#about {
	margin: 0 0 20px 0;
}

#about li p {
	margin: 20px 20px 20px 20px;
}

#about li h4 {
	margin: 10px 10px 5px 20px;
}

/*
Remember to "clear: both" when positioning elements
below floated elements.
*/

#footer {
	clear: both;
	padding: 10px;
	background: #333333;
	border-bottom: 2px solid #ddd;
}

#footer p {
	margin: 0;
	text-align: center;
	color: #777;
}
