/* global.css */
/* Global style sheet for Data Design Site */
/* 03/08/09 */
/* Dark Blue: #02267F */
/* Light Blue: #6DB1F8 */
/* Red: #A82837 */

@charset "utf-8";
body {
	font: 100% Verdana, Helvetica, sans-serif;
	background: #ACD1FB;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
.wrapper #container {
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 2px solid #02267F;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.wrapper #mainContent {
	margin-right: 20px;
	padding: 10px 30px 20px 85px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	font-size: .85em;
}
.wrapper #footer {
	position:relative;
	clear: left;
	width: 100%;	
	/* height: 45px; */
	margin-top: 0px;
	padding: 8px 0px 8px 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#A82837;
	font-size: 8pt;
	color:#CCC;
	text-align:center;
}
.wrapper #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0px 0px 10px 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.wrapper #footer a {
	color:#FFF;
	text-decoration: none;
}
.wrapper #footer a:hover {
	text-decoration:underline;
}
#mission {
	text-align: center;
	margin: 0px 20px 40px 360px;
	padding: 15px 10px 15px 10px; 
	background: #9CF;
}
#mission .title {
	font-family: "Times New Roman", Times, serif;
	font-size: 1.5em;
	font-weight: bold;
	color: #02267F;
}
#mission .text {
	font-family: "Times New Roman", Times, serif;
	font-size: 1em;
	font-weight: bold;
	color: #000;
}
h1 {
	font-size: 1.5em;
	color: #02267F;
}
h2 {
	font-size: 1.3em;
	color: #900;
}
h3 {
	font-size: 1.1em;
	color: #A82837;
}
a:link {
	color: #A82837;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #A82837;
}
a:hover {
	text-decoration: underline;
	color: #A82837;
}
a:active {
	text-decoration: none;
	color: #A82837;
}
.small_text {
	text-align:center;
	font-size: .7em;
	margin-top: 6px;
	padding-top: 2px;
}
.h_line
{
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	border-bottom: 2px solid #02267F;
}
.h_thinline
{
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	border-bottom: 1px solid #02267F;
}