/* Dogwood Style Document */

body {								/* Edits the entire body.  */
	background-color:#e5f0ad;
	color:#000000;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:14px;
	padding-bottom:100px;			/* This padding fixes a little bug we found in Safari, which cut off the bottom of one of the pages. */
}

a {									/* This edits all links on the page, including the navigation links. */
	color:#005500;
	text-decoration:none;			/* Removes underlines. */
	font-weight:bold;
}

img {
	border:0px;						/* This removes the border seen linked images. */
}

#logo {
	position:absolute;
	left:-30px;
	top:-20px;
	background-image:url("images/dogwood.gif");
	width:175px;
	height:156px;
	z-index:4;						/* top-level z-index (think xyz coordinates), places this image over everything else. */
}

#navigation {
	position:absolute;
	top:70px;
	left:75px;
	background-color:#c1ef95;
	border-color:#204003;			/* These describe the borders around the navigation bar */
	border-style:solid;
	border-width:4px 0px 4px 0px;
	height:20px;
	width:675px;
	float:right;
	text-align:left;
	font-family:Georgia, "Times New Roman", Times, serif;
	z-index:3;
	padding:0px 0px 0px 75px;
}

	#navigation a {
		padding:0px 25px 0px 25px;	/* Describes the spacing between the navigation links */
	}

#title {							/* Title image */
	position:absolute;
	top:0px;
	left:0px;
	z-index:2;
	background-image:url("images/title.jpg");
	width:800px;
	height:75px;
}

#content {
	padding:20px 5px 5px 30px;
	position:relative;
	top:80px;
	left:20px;
	width:700px;
	min-height:400px;				/* Ensures the site has a certain height, for aesthetics sake.  not supported by IE. */
	border-left:60px solid #204003;
}

	#content a:hover {
		text-decoration:underline;	/* Underlines links when mouse rolls over */
	}

 /* clearing technique from http://www.csscreator.com/attributes/containedfloat.php */
#content:after {					/* Ensures that images in boxes are contained entirely in those boxes. */
 	content:".";
 	display:block;
 	height:0;
 	overflow:hidden;
 	clear:both;
 	visibility:hidden;
}

.picturebox {						/* Used to frame pictures and their captions */
	position:relative;
	background-color:#c1ef95;
	border:4px solid #204003;
	padding:10px 25px;
	width:400px;
}

#fullpagepic {						/* adjusts .picturebox for wider images. */
	width:600px;
}

.vidlink {
	float:left;
	padding:5px;
}

.rightfloat {						/* only used to describe the filmstrip image on the title page */
	position:relative;
	float:right;
	margin:10px 0px 0px 10px;
}

.clearhack {clear:both;}			/* A clear hack.  Placing this empty div after a floating item causes anything after this to appear below the float, rather than to the right/left of it. */

#ealogo {							/* This just aligns our logo image so that it and its surround text line up appropriately. */
vertical-align:-40px;}