/*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 {
	background:#eee;
	color:#000;
	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;
	}
p, td, th, li, ul, ol {
	margin:0;
	font:1em/1.5 Georgia, "Times New Roman", Times, 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 belwo 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;
	}
ul {
	padding-bottom:0.8em;
	}

/*HEAD STYLES*/

/* H1 is the page title at the top of all pages */
h1 {
	color: #666;
	font-size:1.6em;
	text-transform:uppercase;
	letter-spacing:0.5em;
	}

/* H2 is the sub title and is used for show titles on the page */
h2 {
	font-size: 1.8em;
	}

/* H3 is the section head for pages with subsections*/
h3 {
	margin-top:0.25em;
	margin-bottom:0.83em;
	padding:0.4em 0 0 0.32em;
	border-left:#aaa solid 4px;
	border-top:#aaa solid 1px;
	clear: both;
	color: #444;
	font-size: 1.16em;
	text-transform: uppercase;
	}
/*h4 is used for most small heads throughout the site*/
h4 {
	font-size:1.3em;
	}
/*h5 is set to the same height as text, making it a better choice than using strong and break*/
h5 {
	margin:0;
	padding:0;
	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;
	}


/*reslist hides bullets for long lists of links to resources. Used for tables breaking lists into columns.*/
.reslist ul {
	list-style: none;
	}

/*use in columns with sectcol class if want the paragraph to be normal*/
.norm {
	padding-left:0 !important;
	}

.red {color:#c00;}
