/* 
	Eric Meyer Reset
	http://meyerweb.com/eric/tools/css/reset/index.html
	v1.0 | 20080212 
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* end of Eric Meyer Reset */

/* 
	Layout 

	3 columns of 300px width + 24px gutter = 948px;
	
	300px = 25em
	24px = 2em

*/
#page {
	max-width: 948px;
	margin: 0 auto;
	border-top: 10px solid #009933;
	border-bottom: 70px solid #009933;
	text-align: left;
}
#masthead {
	overflow: hidden;
}
#masthead #site_title {
	margin-top: 44px;
	float: left;
}
#masthead #site_logo {
	float: right;
}
#marquee {
	margin-bottom: 2em;
	border: 2px solid #009933;
	line-height: 0;
}
#body {
	width: 79em;
	overflow: hidden;
}
#footer {
	width: 79em;
}
.section {
	overflow: hidden;
}
.row {
	max-width: 948px;
	overflow: hidden;
}
.column {
	margin-right: 2em;
	float: left;
}
.no_margin {
	margin: 0;
}
.one_column {
	width: 25em;
}
.two_columns {
	width: 52em;
}
.three_columns {
	width: 79em;
}
/*
	Content
	
	Colors:
		Dark Blue:	#2d3b59;
		Mid Blue:		#3d4a73;
		Brown:			#bf700f;
		Orange:			#f27405;
		Light Gray: #f2f2f2;
*/ 
body {
	font: 75%/1.83333 Verdana, sans-seif;
	color: #000000;
	text-align: center;
}
p, form {
	margin-bottom: 2em;
	padding-left: 0.8em;
	padding-right: 1.6em;
}
ul {
  list-style: disc;
  margin-bottom: 2em;
  margin-left: 1.2em;
	padding-left: 0.8em;
	padding-right: 1.6em;
}
a, a:link {
	color: #009933;
	text-decoration: none;
}
a:visited {
	color: #009933;
}
a:hover {
	color: #009933;
	text-decoration: underline;
}
blockquote {
	margin-bottom: 2em;
}
.align-center {
	text-align: center;
}