/*
Theme Name: Twenty Seventeen Child
Theme URI: https://www.npafc.org
Template: twentyseventeen
Author: Alanna Harlton
Author URI: http://alannaharlton.com
*/
.page #content {
padding-top: 13px !important;
}
.page .entry-header {
display: none !important;
}

/*
fix page-jump so it doesn't land behind page header
*/
.anchor_below_fixed_header{
  display: block;
  height: 90px; /*same height as header*/
  margin-top: -90px; /*same height as header*/
  visibility: hidden;
}

/*
attempt to correct button on tech reports page to font-weight is 400 not 800
#buttonFix {
	font-weight: 400;
}
FAILED
SO THEN TRIED
button,
input[type="button"],
input[type="submit"] {
	font-weight: 400 !important;
}
FAILED
*/