@charset "utf-8";
/* Base CSS Document - common sitewide style */


body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background: #FFFFFF;
	margin: 0;
	padding: 0;
	color: #000;
}


/*******************************
 **** Element/tag selectors ****
 *******************************/
ul, ol, dl {
	padding: 0; /* Zero list padding/margin to avoid browser issues */
	margin: 0;
}

h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* Avoid issue where margins can escape from their containing div. Bottom margin holds it away from elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* Padding sides of elements within divs (or using nested divs with side padding), instead of divs themselves, avoids box model math. */
}

a img {
	border: none; /* Remove default blue border some browsers show around an image link. */ 
}


/* Link styling (maintain this order) */
a:link {
	color:#414958;
	text-decoration: underline;
}
a:visited {
	color: #4E5869;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* Ensure keyboard navigation hover experience is same as using mouse */
	text-decoration: none;
}



/*******************************
 *** Site Structure Classes ****
 *******************************/
.container { /* Surrounds all divs, giving their width */
	width: 80%;
	max-width: 1260px; /* Avoid getting too wide on a large monitor. */
	min-width: 640px;/* Avoid getting too narrow. */
	background: #FFF;
	margin: 0 auto; /* auto on the sides, coupled with width, centers the layout. Not needed if width=100%. */
}

.header {
	/* background: #6F7D94; */
	text-align: center;
	padding-bottom: 1em;
	/*margin-bottom: 1em;*/
	clear: both;
}

.content {
	padding: 10px 0; /* Pad only top/bottom, not sides, as we are padding the sides of individual elements within the div */
}

.content ul, .content ol { 
	padding: 0 15px 15px 60px; /* Mirrors right padding in headings & paragraph rule above. Pad bottom for space between other elements on the lists, and left to indent. */
}

.footer {
	padding: 10px 0;
	background: #FFFFFF;
}


.fltrt {  /* Float an element right on the page.  Element to float should precede element it should be next to. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* Float an element left on the page. Element to float should precede element it should be next to. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* Place on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}


.prelist {
	margin-bottom: 0;
}


