/*--- Fix fonts that render as bold in Firefox ---
 * place near the top of your style.css before any overriding styles
 * https://www.lockedowndesign.com/firefox-font-weight-too-bold
 */
html {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	font-weight: 400;
}
/* Firefox specific rule */
@-moz-document url-prefix() {
	body {
		/*font-weight: lighter !important;*/
		font-weight: 400 !important;
	}
}
/*--- end Forefox fix ---*/


/* https://www.w3schools.com/howto/howto_css_clearfix.asp */
/* ensures div height expands with content */
.clearfix::after {
	content: "";
	clear: both;
	display: table;
}


/*--- Primary Definitions --------------------------------------------------------------------------------------------*/
html {
	overflow-Y: scroll;
	overflow: -moz-scrollbars-vertical;
	overflow-X: hidden;
	scroll-behavior: smooth;
}
html,body {
	margin: auto;
	width: 100%; height: 100%;
	/*
	font-family: "Open Sans", sans-serif, Arial;
	font-size: 16px; font-style: normal; font-weight: normal;
	*/
	font-family: "Helvetica Neue", Helvetica, Arial, "Open Sans", sans-serif;
	font-size: 16px; font-style: normal; font-weight: 400;
	color: rgb(36,36,36);
	/*background-color: rgb(144,144,144);*/		/* NOTE: must change background-color for #wrap_all as well */
	background-color: rgb(4,51,97);
	-webkit-font-smoothing: antialiased;
}
h1 {
	font-size: 1.5em;
	font-weight: normal;
	text-decoration: none;
	color: rgb(72,72,72);
}
h2 {
	font-size: 1.25em;
	font-weight: normal;
	font-style: italic;
	text-decoration: none;
	color: rgb(72,72,72);
}
p {
	font-size: 1em;
}

#wrap_all {
	clear: both;
	width: 100%;
	height: auto !important;
	height: 100%;
	min-height: 100%;
	/*background-color: rgb(144,144,144);*/
	background-color: rgb(255,255,255);
	margin: 0 auto -535px;					/* NOTE: bottom margin must = negative of footer height */
}
#wrapper {
	overflow: hidden;
	width: 100%;
	max-width: 1680px;
	min-width: 1024px;
	height: auto;
    min-height: 100%;
	margin: auto;
	/*margin-top: 0px;*/
	text-align: center;
	color: rgb(0,0,0);
	background-color: white;
}
#content_wrap {
	clear: both;
	width: 100%;
	height: auto;
	margin: auto;
	background-color: white;
}

a {text-decoration: none;}
a:link    {color:rgb(0,0,160);}
a:visited {color:rgb(0,0,160);}
a:hover   {color:rgb(255,128,0);}
a:active  {color:rgb(255,0,0);}

img {border: 0px;}

.placeholder {color: rgb(96,96,96);}


/*--- Page Titles ----------------------------------------------------------------------------------------------------*/
#page_title {
	margin: auto;
	padding: 25px 0px 20px 0px;
	width: 100%;
	min-width: 800px;
	background-color: white;
}
#page_title h1 {
	margin: 0px auto 0px auto;
	font-family: "Open Sans", sans-serif, Arial;
	font-size: 2em;
	font-weight: 200;
	text-align: center;
	text-decoration: none;
	color: rgb(48,48,48);
}
hr.style-standard {
	border-color: rgb(144,144,144);			/* Chrome and Safari */
	background-color: rgb(144,144,144);		/* Firefox and Opera */
	color: rgb(144,144,144);				/* IE7+ */
	border-width: 1px;
}
/* https://css-tricks.com/examples/hrs/ */
/* Gradient transparent - color - transparent */
hr.style-gradient {
	border: 0;
	height: 1px;
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}


/*--- Data Sources Infobox/Description -------------------------------------------------------------------------------*/
#page_description {
	clear: both;
	width: 100%;
	max-width: 932px;
	min-width: 800px;
	height: auto;
	margin: auto;
	margin-top: 30px;
	margin-bottom: 50px;
	/*font-family: Arial, Open Sans; font-size: 15px; font-style: normal; font-weight: normal;*/
	font-family: "Helvetica Neue", Helvetica, Arial, "Open Sans", sans-serif;
	font-size: 1.05em;
	line-height: 1.38em;
	font-weight: normal;
	text-decoration:none;
	color: rgb(64,64,64);
	background-color: rgb(240,246,250);
}
#page_description .how_to_headings h1 {
	font-family: Arial, Open Sans; font-style: normal;
	font-size: 1.5em; font-weight: bold;
	color: rgb(64,64,64);
}
.how_to_headings {
	width: auto;
	/*margin: 35px 35px 0px 35px;*/
	padding: 10px 30px 10px 30px;
	text-align: left;
	background-color: none;
}
/*--------------------------------------------------------------------------------------------------------------------*/


/*--- Fieldset, legend, select ---------------------------------------------------------------------------------------*/
fieldset {
	align: center;
	text-align: center;
	border: 0px;
	padding: auto;
	/*border: 1px solid rgb(240,240,240);*/
	height: auto;
	width: auto;
	float: none;
	display: inline-block;
	vertical-align: top;
}
legend {
	margin-bottom: 5px;
	font-size: 18px;
	color: rgb(80,80,80);
}
select {
	margin: 0px 0px 0px 0px;
	width: auto;
	padding: 6px 10px 6px 10px;
	height: auto;
	/*background: transparent;*/
	background: rgb(244,244,244);
	/*border: none;*/
	border: 1px solid rgb(180,180,180);
	border-radius: 4px;
	cursor: pointer;
	outline: 0;	/*prevents blue outline from appearing after click*/
	
	/*font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;*/
	font-family: "Helvetica Neue", Helvetica, "Open Sans", Arial, sans-serif;
	font-size: 19px;
	color: rgb(24,24,24);

	/* The following removes the dropdown arrow in Firefox*/
	/* https://gist.github.com/joaocunha/6273016/ */
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	text-indent: 0.01px;
	text-overflow: '';
}
/*--------------------------------------------------------------------------------------------------------------------*/
