/* This part is the layout of the website. */
body {
	text-align: center; /* IE hack */
	background: url("images/patterson_background.jpg") 50% 50% repeat;
	background-color: white;
}
#wrapper {
	position: relative; /* Key to making elements inside wrapper positioned relative to wrapper */
	width: 900px; 
	margin: 0 auto; 
	text-align: left;
	border: 1px solid black;
	background-color: #369;
	opacity: .90; /* control transparency of website */
	filter: alpha(opacity = 90); /* IE hack */
}
#header {
	clear: both; /* allows no floating elements on either right or left side */
	text-align: center;
	height: 190px;
	background-color: #369;
	border: 1px solid white;
}
#div_left {
	position: relative;
	float: left;
	width: 40.8%;
}
#div_right {
	position: relative;
	float: right;
	width: 59%;
}
#updates {
	clear: both;
	/*height: 600px;*/
	border: 1px solid black;
	padding: 5px 5px 5px 5px;
	background-color: orange;
}
#about_project {
	float: left;
	width: 60%;
	height: 200px;
	border: 1px solid black;
	padding: 5px 5px 5px 5px;
	background-color: orange;
}
#about_team {
	float: right;
	width: 35%;
	height: 200px;
	border: 1px solid black;
	padding: 5px 5px 5px 5px;
	background-color: orange;
}
#contact {
	clear: both;
	border: 1px solid black;
	padding: 5px 5px 5px 5px;
	background-color: orange;
}
#documents {
	clear: both;
	border: 1px solid black;
	background-color: orange;
}
#footer {
	clear: both; /* allows no floating elements on either right or left side */
	text-align: center;
	border: 1px solid white;
	background-color: #369;
	
}

/* #F90 = orange */
img.small {max-height: 220px; max-width: 220px; }

/* Styling the links */
a:link {text-decoration:none; color: white;}
a:visited {text-decoration:none; color: #0000FF}
a:hover {text-decoration:underline; color: #FF0000}
a:active {text-decoration:underline; color: #FF00FF}

/* header */
.head {background-color: maroon; height: 200px;}
img.h_right {float: right; margin-right: 0.5in; margin-top:0.05in; max-height: 200px; max-width: 200px;}
img.h_left {float: left; margin-left: 0.5in; margin-top:0.05in; max-height: 200px; max-width: 200px;}
p.h_title {font-size: 20pt; font-weight: bold; color: white; text-align: center;}
p.h_subtitle {font-size: 12pt; font-style: italic; color: white; text-align: center;}

/* footer */
p.footer_text {font-size: 10pt; color: white;}

