/* Sets element margins, padding, and border to 0 to even out browser differences when adding desired values later. */
/* this rule comes from the Community MX > CMX CSS Collection > Cheats and Productivity snippets. See http://www.communitymx.com/abstract.cfm?cid=F9B3D */
html, body, div, p, h1, h2, h3, h4, h5, h6, blockquote, ol, ul, li, dl, dt, dd, td, form, fieldset, a 
{
     margin: 0;
     padding: 0;
     border: 0;
}
/* Body foreground and background colors, fonts, font size. Also centers the design. */
body 
{
	background: #FFF;
	color: #333333;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.85em;	
	text-align: center;
}

/* This class applied to DIVs in each of the various content areas, like header, main-nav, and footer. */
/* The main-content and secondary-content DIVs are wrapped in a DIV with this class. */
.container 
{
	width: 800px;	
	margin: 0 auto;
	text-align: right;
}

/* Headings and paragraphs */
/* Note: since we zeroed out all the default margins and padding, we need to explicitly set them as needed. */
h1 
{
	font-size: 2em;
	margin-bottom: 20px; /* add a little white space under the heading */
}

h2 
{
	font-size: 1.5em;
	color: #001059;
	
}

h3 
{
	font-size: 1em;
}

h1,
h2,
h3
{
	font-family: Arial, Helvetica, sans-serif; /* headings use Georgia (or a serif font if Georgia is not present) for headingss */
}

h2,
h3,
p
{
	margin-bottom: 10px; /* add a little white space under the headings and paragraphs */
}

p
{
	line-height: 1.6em; /* add a little space between lines in paragraphs */
}


/* Skip link */
/* absolutely positioned offscreen so it's not visible but screen readers will still read it aloud. */
#skipnav 
{
	position: absolute;
	top: 0;
	left: -5000px;
}

/* Links */
/* This is for all links in the site but notice that links in the 
main-nav and footer sections have different rules defined that trump these. */
a,
a:link,
a:visited,
a:active
{
	color: #9b0017;
	text-decoration: none; /* no underline */
}

a:hover,
a:focus
{
	color: #FFFFCC;
	background: #9b0017;
}

/* Header section */
#printed-header
{
	display: none; /* the printed-header should only display when the page is printed (see print.css) */
}
	
#header 
{
	float: left; 
	width: 100%;
	height: 50px;
	background: #9b0017;
	color: #FFFFCC;
}

#header #logo 
{
	float: left;
}

/* Main navigation bar */
#main-nav 
{
	clear: both; /* needed because the header is floated */
	margin-bottom: 20px; /* add a little whitespace under the nav bar */
	background: #029604; 
}

#main-nav ul 
{
	padding: 0.5em 0; /* adds space above and below the list items in the nav bar */
	list-style: none; /* no underline */
}

#main-nav li 
{
	display: inline; /* displays the list items horizontally */
	margin: 0 0.5em; /* adds space to the left and right of each list item */
}

/* Main nav links */
#main-nav a,
#main-nav a:link,
#main-nav a:visited,
#main-nav a:active

{
	color: #ffffff;
	text-decoration: none; /* no underline */
}

#main-nav a:hover,
#main-nav a:focus
{
	color: #00157E;
	background: #ffffff;
}

#logo-content
{
	float: left;
	width: 180px; 
	padding-right: 0px;
	margin-bottom: 10px;
}
/* Secondary content */
/* This is floated left, has a border and background image.
The total width is 200px = 178 + (2x10) + (2x1) = width + padding + border */
/*#secondary-content 
{
	border: 1px solid #029604; 
	float: left;
	width: 178px; 
	padding: 10px;
	margin-bottom: 10px;
	background: url(images/LEAD logo final150.gif) no-repeat;
}

#secondary-content h2
{
	font-size: 1em;
}

#secondary-content ul 
{
	margin-left: 1em;	/* add space to the left of the list */
/*	padding-left: 1em;
}

#secondary-content li
{
	padding-bottom: 0.5em; /* add space below the list items */
/*}

/* Main content */
/* This is floated left, too. 
The total width is 500px = 490 + 10 = width + padding */

#main-content 
{
	float: left;
	width: 594px;
	margin: 0 0 20px 20px;
	padding-right: 0px;
	padding-left: 5px;
	border-left: 1px dotted #999999;
	
}

/* wrap images with captions in a div with this class */
#main-content .image-with-caption
{
	float: right;
	width: 300px;
	padding-left: 10px;
	padding-bottom: 0.5em; /* add a little space below the image */
}

#main-content .image-with-caption p
{
	font-style: italic; /* make the caption italic */
}

#main-content .image-with-caption2
{
	float: right;
	padding-left: 10px;
	padding-bottom: 0.5em; /* add a little space below the image */
}

#main-content .ul
{
 line-height: 1.6em;
 list-style:inside;
 list-style-type:square;
}

img.left { float:left; padding:5px;}




/* Footer */
#footer 
{
	clear: both; /* needed since the main content and secondary content are  floated */
	background: #001059;
	color: #999999; 
	margin-top: 0.5em; /* add a little space above the footer */
	padding: 1em 0; /* adds space above and below the list items in the footer bar */
}

#footer #copyright
{
	float: left; /* floated left so that the footer links can be right-aligned on the same line */
}

#footer ul
{
	text-align: right; 
}

#footer li
{
	display: inline; /* displays the list items horizontally */
	padding-left: 1em; /* makes sure that there's space between the copyright and the links but that the links are flush to the right side of the container */
}

/* Footer links */
#footer a,
#footer a:link,
#footer a:visited,
#footer a:active
{
	color: #FFFFCC;
	text-decoration: none; /* no underline */
}

#footer a:hover,
#footer a:focus
{
	color: #00157E;
	background: #FFFFCC;
}

/* Feedback form on the form.htm page */
#feedback form
{
	width: 30em; /* need to set the width of the form so that the right aligned elements aren't too far to the right side of the container */
}

#feedback form div 
{
	margin: 0.5em 0; /* add a little space above and below the divs in the form so that the lines are too close together */
	text-align: right; 
}

#feedback fieldset
{
	padding: 1em; /* adds space around the fieldset, although this design doesn't show the fieldset, it's all ready for you to give it a border or background color or whatever */
	margin-bottom: 1em; /* add a little space below the fieldset so the footer isn't to close to it */
}

#feedback label 
{
	font-weight: bold; /* form labels are bolded */
}

#feedback input,
#feedback textarea
{
	width: 20em; /* the form inputs and textarea have the same width so that when right-aligned, everything lines up neatly */
	color: #FFFFCC;
	border: 1px solid #029604;
	font-size: 0.85em;
	font-family: Georgia, Arial, Helvetica, sans-serif;
	padding: 0 0.1em; /* adds a little space between the left/right edges of the input and textarea and the letters that are typed within those elements */
}

#feedback .sendbutton
{
	width: 3.5em; /* the send button gets its own class because it needs to be narrower than the other form elements */
	background: #00157E; /* background color of the send button */
}

/* 
Palette 
#00157E - deep blue: header bg color, main nav color (hover), footer text color, footer link color (hover)
#029604 - bright green: main nav bg, secondary content border, footer background color  
#FFFFCC - light yellow: main nav link color, footer link color, secondary content bg
#E4641D - orange: link color, bg of link on hover, feedback form send button bg
#5E0022 - dark brown: body text color
*/

