/*
"Mark in Japan" final layout
HFWD Chapter 3
http://headfirslabs.com/books/hfwd/ch03/stylesheets/screen.css
*/

body {
	margin: 0;
	padding: 0;
	background: #919F8F url('http://georgia.sierraclub.org/images/bkgs/bkg_green3.jpg') repeat-x top;
	font-family:arial, verdana, helvetica, sans-serif;
	line-height: 1.4em;
        font-size:16px; 

}


.textIntro {
        font-family:arial, verdana, helvetica, sans-serif;
	line-height: 1.4em;
        font-size:16px; 
}



/* General Link Style */
a { color:#4A0838; text-decoration:none; }
a:hover { color:#4A0838; text-decoration:underline; }



/* Use a single rule for elements that share the same properties */
h1, h2, h3, ul, li {
	margin: 0;
	padding: 0;
}


p, h2 {
	margin: 10px 0 10px 0;
}

ul {
	list-style-type: none;
}



/* Our friend "margin: 0 auto" shows up again */
#wrap {
	margin: 0 auto;
	margin-top: 20px;
	margin-bottom: 20px;
	padding: 10px;
	width: 930px;
	background: #fff;
	border: 10px solid #044375;
}

#header {
	height: 123px;
}

/*
Use background images in CSS to add visuals
to text
*/
#header h1 {
	padding: 30px 0 30px 30px;
	color: #fff;
	background: url('../images/dot.png') no-repeat 10px 50%;
	font-weight: normal;
	letter-spacing: -1px;
}

#nav {
	margin: 10px 0 0 0;
	padding: 5px;
	background: #044375;
	border-top: 5px solid #033761;
        font-size:14px; 
	color: #fff;
        vertical-align: middle;
}

/*
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 {
        font-size:13px;
	color: #fff;
        vertical-align: middle;
	text-decoration: none;
}

/* Standard float positioning */

#content {
	margin: 10px 0 0 0;
	padding: 10px;
	float: left;
	width: 575px;
	font-family:arial, verdana, helvetica, sans-serif;
	line-height: 1.3em;
        font-size:15px; 
}


#sidebar {
	margin: 10px 0 0 0;
	padding: 10px;
	float: right;
	width: 300px;

	font-family:arial, verdana, helvetica, sans-serif;
	line-height: 1.2em;
        font-size:14px; 

}

#sidebar ul {
	margin: 0 0 40px 0;
}

#sidebar h3 {
	padding: 5px;
	background: #D8E5D7;
	border-bottom: 2px solid #ddd;
	font-weight: normal;
}

/*
Remember to "clear: both" when positioning elements
below floated elements.
*/
#footer {
	clear: both;
	padding: 10px;
	background: #E2E4E6;
	border-bottom: 2px solid #ddd;
        font-size:11px;
}

#footer p {
	margin: 0;
	text-align: center;
	color: #3E3E3E;
}