/*
CSS-file for Strictly CSS three column layout 2006
http://www.strictlycss.com
Developed by Eivind Savio
*/
* /*Set's border, padding and margin to 0 for all values*/
{
padding: 0;
margin: 0;
border: 0;
}
body, html {
/*background-color: #000000; 
color: #ffffff; */
font-family: Verdana, Arial, Tahoma, sans-serif;
text-align: center; /*** Centers the design in old IE versions ***/
}
body {
font-size: 14px;
}
p {padding: 7px 0 7px 0;}

a {
color: #000099;
}
a:hover{
color: #0000FF;
text-decoration: none;
}

h1, h2, h3 {
font-weight: bold;
padding-bottom: 5px;
}
h1 {
font-size: 2em;
}
h2 {
font-size: 1.4em;
}
h3 {
font-size: 1.3em;
}
h1 a, #header h2{
color: #fff;
}
.clear { clear: both; }
#mainContainer {
width: 980px;
margin: 0 auto; /*** Centers the design ***/
min-height: 800px;

text-align: left; /*** Because we centered the text in body we have to move the text back to left aligning ***/
}

#mainContent
{
	width: 580px;
}

#rightContent 
{
	width: 330px; /* mainContainer.width - mainContent.width - 30 */
	float: right;
	
}

#missionLogo 
{
	float:left;
	margin-left: 10px;
	margin-top: 10px;
}

#footer
{
	clear: both; 
	margin-top: 30px;
}