/*
Stylesheet for eaa 297 summer fly-in of 2010
*/

body {
	margin: 0;
	padding: 0;
	background: #96c832 url('../images/bg_green.gif') 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, p, ul, li {
	margin: 0;
	padding: 0;
}

p, h2, h3 {
	margin: 0 0 10px 0;
}

ul {
	list-style-type: none;
}

/* Our friend "margin: 0 auto" shows up again */
#wrap {
	margin: 0 auto;
	margin-top: 40px;
	margin-bottom: 40px;
	padding: 10px;
	width: 700px;
	background: #fff;
	border: 10px solid #96c832;
}

#header {
	background: url('../images/summerflyin10_01.jpg') no-repeat;
	height: 250px;
}

/*
Use background images in CSS to add visuals
to text
*/
#header h1 {
	padding: 30px 0 30px 30px;
	color: #fff;
	background: url('') no-repeat 10px 50%;
	font-weight: normal;
	letter-spacing: -1px;
}

#nav {
	margin: 10px 0 0 0;
	padding: 10px;
	background: #d1c3a2;
	border-top: 5px solid #033761;
}

/*
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 10px 0 10px;
}

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

/* Standard float positioning */
#content {
	margin: 10px 0 0 0;
	padding: 10px;
	float: left;
	width: 450px;
}
#attn {
	font-weight: bold;
	
	}

#sidebar {
	margin: 10px 0 0 0;
	padding: 10px;
	float: right;
	width: 200px;
}

#sidebar ul {
	margin: 0 0 40px 0;
}

#sidebar h3 {
	padding: 5px;
	background: #eee;
	border-bottom: 2px solid #ddd;
	font-weight: normal;
}

/*
Remember to "clear: both" when positioning elements
below floated elements.
*/
#footer {
	clear: both;
	padding: 10px;
	background: #eee;
	border-bottom: 2px solid #ddd;
}

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