@charset "utf-8";
/* CSS Document */

/*_____________CSS Basic Typography/Color Foundation ____________*/

/*138.5%via YUI Fonts CSS foundation header*/
body{font-family: Arial, Sans-Serif}

h1 {
	font-size: 116%;  
	font-family:Arial, Helvetica, Verdana, Geneva, Gill Sans, Gill Sans MT, Lucida, sans-serif;
	color:#49809e;
	margin:0;
	}
	
h2 {
	font-size:108%; 
	font-family: Arial, Helvetica, Verdana, Geneva, Gill Sans, Gill Sans MT, Lucida, sans-serif;
 	margin:0;
	}

h3 {
	font-size:100%;
	font-family:Arial, Helvetica, Verdana, Geneva, Gill Sans, Gill Sans MT, Lucida, sans-serif;
	margin:0;
	}

h4{
	font-family: Arial, Helvetica, Verdana, Geneva, Gill Sans, Gill Sans MT, Lucida, sans-serif;
	font-size:93%;
	margin:0;
	}

h5{	
	font-family: Arial, Helvetica, Verdana, Geneva, Gill Sans, Gill Sans MT, Lucida, sans-serif;
	font-size: 85%;
	margin:0;
	}

h6{
	font-family: Arial, Helvetica, Verdana, Geneva, Gill Sans, Gill Sans MT, Lucida, sans-serif;
	font-size: 77%;
	}

h1,h2,h3,h4,h5,h6,strong {
	/*bringing boldness back to headers and the strong element*/
	font-weight:bold; 
}

abbr,acronym {
	/*indicating to users that more info is available */
	border-bottom:1px dotted #000;
	cursor:help;
}

em {
	/*bringing italics back to the em element*/
	font-style:italic;
}

blockquote,ul,ol,dl {
	/*giving blockquotes and lists room to breath*/
	margin:13px;
}

ol,ul,dl {
	/*bringing lists on to the page with breathing room */
	margin-left:26px;
}

ol li {
	/*giving OL's LIs generated numbers*/
	list-style: decimal outside;	
}

ul li {
	/*giving UL's LIs generated disc markers*/
	list-style: disc outside;
}

dl dd {
	/*giving UL's LIs generated numbers*/
	margin-left:13px;
}

th,td {
	/*borders and padding to make the table readable*/
	border:1px solid #000;
	padding:6px;
}

th {
	/*distinguishing table headers from data cells*/
	font-weight:bold;
	text-align:center;
}

caption {
	/*coordinated marking to match cell's padding*/
	margin-bottom:6px;
	/*centered so it doesn't blend in to other content*/
	text-align:center;
}

p,fieldset,table {
	/*so things don't run into each other*/
	margin:0px;
}

/*_________________________links_______________*/

a img{
	border:none;
	padding:0px;
	}
	
a:link{color:#ffffff; text-decoration: none;
	}
a:visited{color:#ffffff; text-decoration: none;
	}
a:active{color:#ffffff;	text-decoration: none;
	}
a:hover{color:#ffffff; text-decoration: underline;
	}