@charset "UTF-8";
/* CSS Document */

/* zero all margin and padding */

* {
	margin: 0;
	padding: 0;
}

/* general body styles */

body {
	background: #1b2a4e url(../images/site_bg.gif) top left repeat-x;
}

p, ul, ol, li {
	font-size: 0.75em;
}

p, ul, ol, li, h1, h2, h3, h4, h5, h6 {
	margin: 1em 0;
}

/* site layout */

/* wrapper (holds entire site) and container (defines site width and contains all site content) */

#wrapper {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	text-align: center;
}

#container {
	width: 1024px;
	margin: 0 auto;
}

/* site header (contains header image, logo, main navigation, auxillary navigation, and flash campaign */

#header {
	width: 1024px;
	height: auto;
	background: url(../images/header_bg.jpg) top left no-repeat;
}

/* logo image area */

#logo, #logo img{
	float: left;
	width: 264px;
	height: 146px;
	border: none;
	overflow: hidden;
}

#logo h1 {
	text-indent: -9000px;
}

/* flash campaign area */

#campaign {
	width: 960px;
	border-left: 2px solid #fff;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	margin: 0 auto;
}


/* content container */

#content {
	width: 944px;
	margin: 0 auto;
	padding: 10px;
	background: #fff url(../images/content_bg_outer.gif) top left repeat-x;
}

/* three column layout */

#threeColumn {
	width: 100%;
	margin: 0 auto 30px 0;
}

/* column structure */

#colOne {
	float: left;
	width: 405px;
	text-align: left;
	padding: 0 20px 0 40px;
	_padding: 0 20px 0 20px;
	background: url(../images/divider.gif) center right no-repeat;
}

#colTwo {
	float: left;
	text-align: left;
	width: 202px;
	padding: 0 20px;
	background: url(../images/divider.gif) center right no-repeat;
}

#colThree {
	float: left;
	text-align: center;
	width: 202px;
	padding: 0 0 0 10px;
}

#coluThree form {
	width: auto;
}

#colThree form input {
	width: 140px;
	border-top: 2px solid #8f8f8f;
	border-left: 2px solid #e3e3e3;
	border-right: 2px solid #e3e3e3;
	border-bottom: 2px solid #e3e3e3;
}

#colThree form input#submit {
	width: 53px;
	height: 20px;
	margin-bottom: -5px;
	border: none;
}

/* column content styling */

#colOne h2 {
	font-size: 3.0em;
	font-family: Helvetica, Arial, sans-serif;
	color: #5e5e5e;
	font-weight: 100;
	margin: 20px 0 10px 0;
}

#colTwo h2, #colThree h2 {
	font-size: 1.00em;
	font-family: Helvetica, Arial, sans-serif;
	color: #5e5e5e;
	font-weight: 100;
	margin: 50px 0 10px 0;
}

#colThree h3 {
	font-size: 1.00em;
	font-family: Helvetica, Arial, sans-serif;
	color: #5e5e5e;
	font-weight: 100;
	margin: 10px 0 10px 0;
}

#colOne p, #colTwo p, #colThree p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.75em;
	line-height: 1.50em;
	color: #3c3c3c;
	margin: 0 0 1.00em 0;
}

#colOne a, #colOne a:visited, #colTwo a, #colTwo a:visited, #colThree a, #colThree a:visited {
	color: #006de8;
}

#colOne a:hover, #colTwo a:hover, #colThree a:hover {
	color: #3c3c3c;
}

/* site footer */

#footer {
	clear: both;
}

#footer p, #footer a, #footer a:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #231f20;
	text-decoration: none;
}

.copyright {
	float: left;
	text-align: left;
	width: 15%;
}

.contact {
	float: left;
	text-align: center;
	width: 75%;
}

.credit {
	float: right;
	text-align: right;
	width: 10%;
}

/* clearing class to be used to clear floated elements */
.clear {
	clear: both;
}