/* ----------------------------------------
CSS for positioning

Version: 1.0
Author: Matt Flynn
E-mail: mrflynn@gmail.com
---------------------------------------- */

body {  /* Sets font face, size, and full page background */
	font-family: Arial, Verdana, Trebuchet MS, Tahoma, sans-serif;
	font-size: 15px;
	background-color: #F5F5C4;
}

/* =Layout
---------------------------------------- */
#pageWrapper {  /* sets width of page and centers */
	width: 950px;
	position: relative;
	left: 50%;
	margin-left: -475px;
}

#header {
	width: 950px;
	position: relative;
	left: 50%;
	margin-left: -475px;
	background-color: #F5F5C4;
}

#contentWrapper { /* Holds content and global nav bar, allows "clearing" */
	background-color: #f5f5f5;
}

#nav {
	width: 210px;
	position: relative;
	background-color: #f5f5f5;
	float: left;
}

#content {
	width: 380px;
	float: right;
}

#content p, #content ul{  /* Resets margins and padding for text area */
	padding-left: 7px;
	padding-right: 24px;
	margin-bottom: 1em;
}

#content li {
	margin-left: 17px;
	padding-left: 5px;
}

#ob {
	font-size: small;
}

/* =Typography
---------------------------------------- */

a {
	color: #000000;
	text-decoration: none;
}

a:HOVER {
	text-decoration: underline;
}

a.seelink {
	text-decoration: underline;
}

h2 {
	font-size: 19px;
	color: #000000;
}

h3 {
	color: green;
}
