/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */

body {
	background-color: #eae7cc;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 86%;
    color: #000000;
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
}

#block1 {
	margin: auto;
	width: 990px; 
	padding: 0;
	position: relative;
	text-align: center;
	border: 0;
	background: url(http://www.agendaforasustainableamerica.com/images/block_bg.gif) repeat-y top left;
}

#nav {
	position: relative;
	clear: left;
	width: 990px;
	margin: 0;
	padding: 0;
	border: 0;
	background: #305FBF;
	z-index: 10;
	text-align: center;
	background-color: #cfad7f;
}

#nav ul { /* all lists */
	float: left;
	width: 990px;
	margin: 0;
	padding: 0;
	list-style: none;
	line-height: 1;
	font: bold 1em Tahoma, Arial, sans-serif;
	text-align: left;
	z-index: 10;	
	background: #28301b;
}

#nav a {
	display: block;
	width: 110px;
	margin: 0;
	padding: 5px 8px 5px 8px;
	border: 0;
	color: #FFFFFF;
	text-decoration: none;
	text-align: center;
}

#nav a:hover {
	background-color: #ffffff;
	cursor: pointer;
	font-weight: bold;
	color: #101010;
}

#nav li { /* all list items */
	float: left;
	display: block;
	width: 126px; /* width needed or else Opera goes nuts */
	margin: 0;
	padding: 0;
	border: 0;
}

#nav li ul { /* second-level lists */
	position: absolute;
	width: 260px;
	left: -999em; /* use left instead of display to hide menus, display: none isn't read by screen readers */
	background: #AF7D58;	
	border: 0;
	font: bold 1em Tahoma, Arial, sans-serif;
	color: #000000;
}

#nav li li {
	width: 256px;
	margin: 0;
	padding: 0;
	border: 0;
}

#nav li ul a {
	width: 248px;
	margin: 0;
	padding: 6px;
	border: 0;
	text-align: left;
	color: #ffffff;
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

#nav li:hover, #nav li.sfhover {
	background: #F9B25D;
}

top {
	width: 990px;
	margin: 0;
	padding: 0;
	border: 0;
}

#top img {
	border: 0;
	margin: 0;
	padding: 0;
}

#top map {
	border: 0;
	margin: 0;
	padding: 0;
}

#content {
	float: left;
	clear: both;
	width: 750px;
	padding: 0;
	margin: 0;
	background-color: transparent;
	color: #000000;
	text-align: left;
}

#content h1 {
	font: 1.75em Georgia, Times New Roman, Times, serif;
	margin: 0;
		/*both set to zero and padding in header div is used instead to deal with ie pc problems.*/
	padding: 1.25em 0 1.25em 0;
	text-align: center;
}

#content h2 {
	font: bold 1.2em Verdana, Arial, Helvetica, sans-serif;
	margin: 0 50px .85em 50px;
}

#content h3 {
	font: bold 1.1em Verdana, Arial, Helvetica, sans-serif;
	margin: 0 50px 0 50px;
}

#content h4 {
	font: bold 1em Verdana, Arial, Helvetica, sans-serif;
	margin: 0 50px 0 50px;
}

#content h5 {
	font: bold .9em Verdana, Arial, Helvetica, sans-serif;
	margin: 0 50px 0 50px;
}

#content h6 {
	font: bold .9em Verdana, Arial, Helvetica, sans-serif;
	margin: 0 50px 0 70px;
}

#content p {
	font: normal 1em Verdana, Arial, Helvetica, sans-serif;
	line-height: 1.3em;
	margin: 0 50px 1.25em 50px;
}

#content a:link {
	color: #AB1F10;
	text-decoration: none;
	font-weight: bold;
}

#content a:visited {
	color: #AB1F10;
	text-decoration: none;
	font-weight: bold;
}

#content a:hover {
	color: #155CCC;
	text-decoration: underline;
	cursor: pointer;
	font-weight: bold;
}

#content li {
	font-size: 1em;
	margin: 0 20px 0 20px;
	padding: 0;
	line-height: 1.3em;
}

#content li li {
	font-size: 1em;
	margin: 0;
	padding: 0;
	line-height: 1.3em;
}

#content li li li {
	font-size: 1em;
	margin: 0;
	padding: 0;
	line-height: 1.3em;
}

#content td li {
	margin: 0 20px 0 10px;
	padding: 0;
}

#content img {
	border: 0;
	margin: 3px 10px 10px 0;
	padding: 0;
}

#right {
	float: right;
	width: 240px;
	margin: 0;
	padding: 0;
	background-color: transparent;
}

#right p {
	font: normal 1em Verdana, Arial, Helvetica, sans-serif;
	line-height: 1.3em;
	margin: 0 10px 1.25em 10px;
}

#right p.image {
	font: normal 1em Verdana, Arial, Helvetica, sans-serif;
	line-height: 1;
	margin: 0 0 1.25em 0;
}

#right a img {
	border: none;
}

#right a:link {
	color: #496C3B;
	text-decoration: none;
	font-weight: bold;
}

#right a:visited {
	color: #496C3B;
	text-decoration: none;
	font-weight: bold;
}

#right a:hover {
	color: #155CCC;
	text-decoration: underline;
	cursor: pointer;
	font-weight: bold;
}

#footer {
	position: relative;
	clear: both;
	background-color: #bf671f;
	width: 990px;
	text-align: left;
}

#footer p {
	color: #FFFFFF;
	font-size: 1em;
	line-height: 1.3em;
	margin: 0 20px 0 20px;
	padding: 20px 0 20px 0;
	text-align: center;
}

#footer a:link {
	color: #FFFFFF;
	text-decoration: none;
	font-weight: bold;
}

#footer a:visited {
	color: #FFFFFF;
	text-decoration: none;
	font-weight: bold;
}

#footer a:hover {
	color: #E52A15;
	text-decoration: underline;
	cursor: pointer;
	font-weight: bold;
}

#toc ol.tablel_content {
	width: 90%;
	margin: 0 auto;
	padding: 0;
	list-style: none;
	font-size: .9em;
}

#toc ol.tablel_content li {
	display: block;
	margin: 0;
	padding: 10px 0;
	text-align: right;
	background: url(/images/dotted.gif) repeat-x left 22px;
	clear: both;
}

#toc ol.tablel_content li strong, ol.tablel_content li em {
	float: left;
	background: #ffffff; /*--Combined Property with 'li em'--*/
	padding: 0 10px; /*--Combined Property with 'li em'--*/
}

#toc ol.tablel_content li strong {
	font-weight: normal;
}

#toc ol.tablel_content li em {
	float: none;
	font-style: normal;
}

#toc ol.tablel_content ol {
    list-style-type: none;
}

#toc ol.tablel_content ol ol {
    list-style-type: none;
}

#toc ol.tablel_content ol ol li {
    font-style: italic;
}

#toc ol.tablel_content ol ol ol li {
    font-style: normal;
}

#toc ol.tablel_content ol li br {
	margin: 0;
	padding: 0;
}

#links ul {
	list-style-type: none;
	}
	
#links ul ul {
	margin-top: 10px;
	margin-bottom: 10px;
}
