@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: 123.1%;  
	font-family: Arial, Helvetica, Verdana, Geneva, Gill Sans, Gill Sans MT, Lucida, sans-serif;
	color: #49809e;
  	/*font-variant:small-caps;
	text-transform:none;
	font-weight:100; 
	line-height: 20px;
	margin: 15px 0px 0px 18px;*/
	}
	
h2 {
	/*123.1% via YUI Fonts CSS foundation paragraph start*/
	font-size: 108%; 
	font-family: Arial, Helvetica, Verdana, Geneva, Gill Sans, Gill Sans MT, Lucida, sans-serif;
  	/*color:#99CC33;
  	font-variant:normal;
  	text-transform:uppercase;
  	font-weight:200;
  	font-style:Bold;
	line-height: 15px; 
 	margin: 0px 0px 0px 18px;
	letter-spacing: 3px;*/
	}

h3 {
	/*108% via YUI Fonts CSS foundation	paragraph*/
	font-size: 100%;
	font-family: Arial, Helvetica, Verdana, Geneva, Gill Sans, Gill Sans MT, Lucida, sans-serif;
	/*font-family: Arial, Helvetica, Verdana, Geneva, Gill Sans, Gill Sans MT, Lucida, sans-serif;
	color:#FFFFFF;
	font-weight:normal;
	margin: 9px 18px;*/
	}

h4{
	font-family: Arial, Helvetica, Verdana, Geneva, Gill Sans, Gill Sans MT, Lucida, sans-serif;
	font-size: 93%;
	/*color:#FFFFFF;
	font-weight:normal;
	font-size: 12px; 
	margin: 9px 18px;*/
	}

h5{	
	font-family: Arial, Helvetica, Verdana, Geneva, Gill Sans, Gill Sans MT, Lucida, sans-serif;
	font-size: 85%;
	/*color:#FFFFFF;
	font-weight:normal;
	margin: 9px 18px;*/
	}

h6{
	font-family: Arial, Helvetica, Verdana, Geneva, Gill Sans, Gill Sans MT, Lucida, sans-serif;
	font-size: 77%;
	/*color:#FFFFFF;
	font-weight:normal;
	margin: 9px 18px;*/
	}

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: #49809e; text-decoration: underline;
	}
a:visited{color: #49809e; text-decoration: underline;
	}
a:active{color: #a2a2a2; text-decoration: underline;
	}
a:hover{color: #a2a2a2; text-decoration: underline;
	}