/*All basic text-handling styles, plus a few classes for special cases*/

/*BASE STYLES*/
/*Set font-size to 76% allowing use of ems for type sizing and other measures. Default size of p = 12.16pts (1em)*/
body {
	font-size:76%;
 	}

/*these two rules set the basefonts for the entire site. Change these to quickly change the look of the site.*/
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding:0;
	font-family: Arial, Helvetica, sans-serif;
	color: 1d430d;
	font-weight: bold;
	}
p, td, th {
	margin:0;
	font:1em/1.25 Arial, Helvetica, sans-serif;
	}
li, ul, ol {
	font:1em/1.25 Arial, Helvetica, sans-serif;
	}

/*anchor link psuedo classes must be called out in this order - link, visited, hover, active*/
/*these rules match typical defaults (00f 60f 90f f00) and are redundant*/
a:link {
	color:#00f;
	}
a:visited {
	color:#60f;
	}
a:hover {
	color:#90f;
	}
a:active {
	color:#f00;
	}

/*Makes every image on the page block-level, avoiding need for <br /> tags*/
/*And hides borders for css-enabled browsers, avoiding need for border="0"*/
img {
	border:0;
	display:block;
	}

/*Adds extra whitespace below all paragraphs, "left-align" adjusts for bug in IE 6*/
p {
	margin-bottom:1em;
	text-align:left;
	}
	
/*Tightens line spacing for lists*/
li, ol, ul {
	line-height:1.4em;
	/*margin-left: 16px;*/
	}
ul {
	padding-bottom:0.8em;
	}

/*HEADLINE STYLES*/

/* H1 shown here is a sample style and needs revision: no need to call out font here */
h1 {
	color:1d430d;
	font-size:1.6em;
	line-height: 1em;
	margin-bottom: 10px;
	}

h2 {
	font-size:1.4em;
	margin-bottom: 6px;
	line-height: 0.95em;
	}

h3 {
	font-size:1.2em;
	}
	
h4 {
	font-size:1em;
	}
	
	
/*TABLE HANDLING*/
/*Removes borders, padding and margins from tables*/
table {
	margin:0;
	padding:0;
	border:none;
	}
/*Aligns all type left, adds small amount of padding and sets vertical align to top for cells*/
th, td {
	margin: 0;
	padding:0.5em;
	vertical-align:top;
	text-align:left;
	}


/*CLASSES*/
/*This class makes it easy to hide elements from css-capable browsers. They will show in other browsers*/
.hide {
	display:none;
	}

/*This style is used ONLY in the head include for the skip navigation link*/
.skip {
	display:none;
	}

/*This style is used to highlight small chunks of copy*/
.red {color:#c00;}

/*This style is used for questions on the FAQ pages*/
.quest {
	font-size:0.85em;
	text-transform: uppercase;
	}

/*This style is for small type*/
.sml {
	font-size:0.85em;
	line-height: 1.2em;
}

/*This style is for special comments on the page*/
.aside {
	font-size: .85em;
	font-style: italic;
	}

/*STYLE FOR HOME PAGE*/
/*TEMPORARY STYLES*/
#hp p {
	font: bold normal 1.25em/1.25em Arial, Helvetica, sans-serif;
	}

#hp h1 {
	margin-bottom: 0.5em;
	color: #0a5e8c;
	font: bold 1.5em/1.25em Arial, Helvetica, sans-serif;
	padding-top: .5em;
	}
#hp2 h2 {
	color:#0c5069;
	font: bold 1.5em Arial, Helvetica, sans-serif;
	}
	
#hp2 p {
	font:normal 1em/1.25em Arial, Helvetica, sans-serif;
	}
