/*
Design by Jing Lin
CS101 Project1 TA: Matt Handley Time: Wednesday 9-10
*/

body {
/*
This sets a fixed background image with a white colored background
*/
	margin: 80px 0;
	padding: 0;
	background: #ffffff url(images/background.jpg);
	background-repeat: no-repeat;
	background-attachment: fixed;
	
	font: normal small Verdana, Arial, Helvetica, sans-serif;
	line-height: 1.8em;
	color: #749A75;
}
/*
This makes all associated headers bold and dark green
*/
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
	color: #235324; /* deep green color */
}

h2 {
}

h3 {
}

p, blockquote, ul, ol {
	margin-top: 0;
}

blockquote {
}

a {
	color: #235324; /* deep green color */
}

a:hover {
	text-decoration: none;
}

/* Menu */
/* Menu is the list of links on top */
#menu {
	width: 700px;
	height: 40px;
	margin: 0 auto;
	background: #EFFCF0;/* light green color */
	border: 5px solid #976a41;/* light brownish color */
}

#menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

#menu li {
	display: inline;
}
/* Menu links */
#menu a {
	display: block;
	float: left;
	height: 32px;
	padding: 8px 20px 0 20px;
	border-right: 1px solid #976a41;/* light brownish color */
	text-decoration: none;
	font-weight: bold;
	color: #235324; /* Deep green font color for menu */
}

#menu a:hover {
	background: #d8d4cf; /* When mouse hovers over link, turns an purple color */
}

#menu #homepage a {/* This refers to blog/homepage link on far right of webpage */
	float: right;
	padding-left: 30px;
	background: url(images/img02.gif) no-repeat 10px 50%; /* picture of little flower */
	border: none;
}

#menu #homepage a:hover { /* When mouse hovers over link, turns an purple color */
	background-color: #d8d4cf;/* purple color */
}

/* Header */
/* The Header is the box underneath the menu of links
It contains a picture and the text-Jing Lin etc.
*/
#header {
	width: 700px;
	height: 180px;
	margin: 0 auto;
	background: url(images/img03.jpg);
	border: 5px solid #976a41/* light brownish color */;
	border-top: none;
}

#header h1 {
	padding: 75px 0 0 20px;
	font-size: 1.8em;
}

#header h2 {
	padding: 0 0 0 20px;
	font-size: .8em;
}

#header a {
	text-decoration: none;
	color: #DAEBDB;
}

/* Content */
/* Content is the box below the header */
#content {
	width: 700px;
	margin: 0 auto;
	background: #EFFCF0/* light green color*/ url(images/img04.gif) repeat-y;/* img04 is a thin line repeated 			vertically to create the blueish "column" on the left side */
	border: 5px solid #976a41/* light brownish color */;
	border-top: none;
}

/* Latest Post */
/* Latest Post are the text below the header. It is usually a introduction paragraph. */

#latest-post {
	padding: 20px 0;
	background: #EFFCF0;
	border-bottom: 10px solid #976a41/* light brownish color */;
}

#latest-post .title {
	float: left;
	width: 230px;
	padding: 0 20px;
	text-align: right;
	line-height: 1.2em;
	font-size: 2.2em;
}

#latest-post .story {
	float: right;
	width: 389px;
	padding: 0 20px;
	border-left: 1px solid #C6DAC7;
}

#latest-post .meta {
	clear: both;
}

/* Posts */
/* Posts are the texts in the main column. It is below the "Latest Post" It contains more specific information. */

#posts {
	float: right;
	width: 390px;
	padding: 20px;
}

#posts .post {
	padding-bottom: 30px;
}

#posts .story {
	padding: 15px 20px 0 20px;
}

#posts .meta {
	padding: 5px 0 0 20px;
}

#posts .meta p {
	margin: 0;
	line-height: normal;
	font-size: smaller;
}

#posts ul {
}

#posts ul li {
}

/* Links */
/* Links on the left of the webpage */

#links {
	float: left;
	width: 230px;
	padding: 20px
}

#links ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

#links li ul {
	padding: 15px 20px 30px 20px;
}

#links li li {
	padding: 3px 0;
}

#links li a {
}

#links li i {
	font-size: smaller;
}

/* Footer */
/* Footer is the copyright claimer*/

#footer {
}

#footer p {
	text-align: center;
	font-size: x-small;
	color: #976a41/* light brownish color */;
}

#footer a {
	color: #976a41/* light brownish color */;
}
