@charset "utf-8";
body  {
	font: normal 12px Arial, Helvetica, sans-serif;
	background: #f4ebc0 url(images/main_bg_gradient.jpg) left top repeat-x;
	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;
}
#container { 
	width: 100%;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: transparent url(images/main_bg.jpg) top center no-repeat;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
	vertical-align: top;
}

#masthead {
	width: 810px;
	height: 100px;
	margin: 0 auto;
	}
	
	#masthead h1 {
		margin: 0;
		padding: 0;
	}
	
	#masthead h1 a {
		display: block;
		height: 80px;
		width: 370px;
		text-indent: -99999px;
	}

#masthead_print {
	display: none;
}

#topArea {
	width: 810px;
	margin: 0 auto;
}

#mainPhoto {
	float: right;
	background: transparent url(images/header.jpg) top right no-repeat;
	width: 498px;
	height: 138px;
}

/*~Main Navigation
--------------------------------------------------------------------------*/

#mainNav {
	float: left;
	padding-left: 20px;
	width: 277px
	}
	
	#mainNav ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}
	
	#mainNav a {
		display: block;
		width: 277px;
		height: 27px;
		text-indent: -99999px;
	}
	
	#mainNav li {
		list-style: none;
		margin: 0;
		padding: 0;
	}
	
	#mainNav li.home { background: transparent url(images/nav_home.gif) left top no-repeat; }
	#mainNav li.publications { background: transparent url(images/nav_publications.gif) left top no-repeat; }
	#mainNav li.about { background: transparent url(images/nav_about.gif) left top no-repeat; }
	#mainNav li.news { background: transparent url(images/nav_news.gif) left top no-repeat; }
	#mainNav li.resources { background: transparent url(images/nav_resources.gif) left top no-repeat; }
	
	#home #mainNav li.home { background: transparent url(images/nav_home_on.gif) left top no-repeat; }
	#publications #mainNav li.publications { background: transparent url(images/nav_publications_on.gif) left top no-repeat; }
	#about #mainNav li.about { background: transparent url(images/nav_about_on.gif) left top no-repeat; }
	#news #mainNav li.news { background: transparent url(images/nav_news_on.gif) left top no-repeat; }
	#resources #mainNav li.resources { background: transparent url(images/nav_resources_on.gif) left top no-repeat; }


#header { 
	margin-left:0px;
	margin-top:0px;
	margin-right:0px;
	padding-left:0px;
 /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#col1 {
	/* float: left; /* since this element is floated, a width must be given */
	width: 107px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #faf5e1 url(images/left.jpg); /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 5px 0px; /* padding keeps the content of the div away from the edges */
	margin:0px;
}
#col2 {
	/* float: right; /* since this element is floated, a width must be given */
	width: 107px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: url(images/right.jpg); /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px 0px; /* padding keeps the content of the div away from the edges */
	
}
#mainContent {
	clear: both;
	width: 743px;
	margin: 0px auto;/* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 20px 33px 30px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-color: #fff;
}

#mainContent h2.homeWelcome {
	background: transparent url(images/homeWelcome.gif) left top no-repeat;
	height: 35px;
	width: 700px;
	text-indent: -99999px;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
	
}
a,
a:link,
a:visited,
a:active {
	color: #ff3399;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

ul {
	padding: 0;
	margin-top: 8px;
	list-style:none;
}

li {
	margin-left: 25px;
	list-style: square;
}

ul li {
	margin-bottom: 8px;
}

ul li p {
	margin: 0;
	padding: 0;
}

h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #666666;
}

h2 {
	color: #63314c;
	font: normal 20px Arial, Helvetica, sans-serif;
}

th {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #FFFFFF;
}



/*~Main Columns
--------------------------------------------------------------------------*/

#columns {
	margin-top: 40px;
}

#columns li, #columns p, #columns h3 {
	margin-top: 0px;
	padding: 0;
	padding-right: 5px;
}

#columns h2 {
	background-color: #161310;
	font-size: 12px;
	font-weight: bold;
	color: #fff;
	padding: 6px 4px 2px;
	margin-bottom: 10px;
	margin-left: -2px;
}

#columns ul {
	margin: 0;
	padding: 0;
}

#columns li {
	list-style: none;
	padding-left: 7px;
	margin-left: 0px;
	margin-bottom: 5px;
	line-height: 12px;
	background: transparent url(images/list_dot.gif) left 4px no-repeat;
}

#columns h3 {
	font-size: 11px;
	margin-bottom: 4px;
	line-height: 13px;
}

#factsheets, #effort{
	width: 235px;
	float:left;
	padding-right:19px;
	}
			
#whatsnew{
	width: 235px;
	float:right;
	}



/*~Footer
--------------------------------------------------------------------------*/

#footer {
	font-size: 11px;
	background: transparent url(images/footer_bg.jpg) center top no-repeat;
	padding: 33px 60px 20px;
} 
#footer a, #footer a:link, #footer a:visited {
	color: #000;
	text-decoration:none;
	}
	
#footer a:hover {
	color: #000;
	text-decoration: underline;
	}
	
#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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
