/* The style sheet for Assignment #1: Personal WebPage
	Ashley Counts, CS2100
	6.27.2011 */

body	{
	background-color: #E6FF8E;
	background-image: url(../images/background.jpg);
}
#wrapper	{
	width: 1200px;	
	/* Note: I modified the width from the given 750px - 
			 it looks better this way :)	*/
	margin-left: auto;
	margin-right: auto;
}

a	{
	text-decoration: none;
	color: #37420B;
}

a:hover	{
	color: #FFF25D;
}

a.active	{
	font-style: italic;
	font-weight: bold;
}

#header	{
	background-image: url(../images/bannersized.jpg);
	background-repeat: no-repeat;
	width: 1200px;
	height: 158px;
	margin-top: 50px;
}

#logo	{
	width: 700px;
	text-align: center;
	padding-top: 10px;
	padding-left: 220px;
	padding-right: 0px;
	position: relative;
	float: left;
}

#header ul	{
	margin-left: 850px;
	padding-top: 115px;	
}

#header li	{
	background-image: url(../images/button.jpg);
	border: #37420B 1px double;
}

.nav li	{
	display: inline;
	padding: 5px 15px;
}

img	{
	border: none;
}

#content	{
	clear: both;
	border: #37420B 2px solid;
	background-image: url(../images/contentbackground.jpg);
	min-height: 500px;
	padding-left: 50px;
	padding-bottom: 20px;
}

#content p	{
	width: 1000px;
	margin-left: 25px;
	line-height: 150%;
	font-size: 1.1em;
}

#footer	{
	clear: both;
	background-color: #E6FF8E;
	background-image: url(../images/bannerfooter.jpg);
	background-repeat: no-repeat;
	position: absolute;
	width: 1200px;
	height: 100px;
	font-size: .9em;
	text-align: center;
}

#footer ul	{
	margin-top: 20px;
}

#content dt	{
	text-decoration: underline;
	font-size: 1.4em;
	line-height: 200%;
	padding-left: 10px;
}

#content dd	{
	line-height: 150%;
}

#content li	{
	line-height: 150%;
	font-size: 1.2em;
	list-style-type: circle;
}

.w3	{
	position: absolute;
	float: right;
	bottom: 41px;
	right: 10px;
}

.css	{
	position: absolute;
	float: right;
	bottom: 10px;
	right: 10px;
}

.float-left	{
	float: left;
}

.float-right	{
	float: right;
	margin-right: 20px;
	margin-top: 10px;
}

