.header {
	background-color: #fff;
	border-bottom: 50px solid #fff;
	padding: 1.2631578947rem 0 1rem;
}

.sticky_buttons {
	position: fixed;
	top: 0;
	background-color: #fff;
	z-index: 100;
 	width: 92%; 
}

.sticky_buttons_add_padding {
	padding-top: 60px;
}

.demo_button {
	background-color: #fff;
    border: 1px solid #00629c;
    border-bottom: none;
    color: #0170b2;
    cursor: pointer;
    display: inline-block;
    font-size: 0.7rem;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    line-height: 1;
    padding: 1em 1.5em;
    text-align: center;
    text-decoration: none;
    vertical-align: top;
    white-space: normal;
    margin: 0;
    width: 25%;
}

.region_charts {
	display: grid; 
	grid-template-columns: 48% 48%; 
	width: 100%; 
	margin: auto; 
	grid-column-gap: 1%;
}

.region_charts_summary_div {
	display: grid; 
	grid-template-columns: 30% 30% 30%; 
	width: 100%; 
	margin: auto; 
	grid-column-gap: 5%;
}

.region_charts_summary_item {
	text-align: center;
	border: 1px solid gray;
	font-size: .8rem;
}
	
.demo_button.is-active {
    background-color: #00629c;
    color: #fff;
}

input {
  box-sizing: border-box;
  width: 100% 
} 

.l-flex {
    display: flex;
}

.l-flex--center {
    align-items: center;
}

.l-flex--j-center {
    justify-content: center;
}

.l-flex--inline {
    display: inline-flex;
}

.l-flex--column {
    flex-direction: column;
}

.l-flex--end {
    justify-content: flex-end;
}

.l-flex--wrap {
    flex-wrap: wrap;
}

.l-flex__item--center {
    align-self: center;
}

.l-flex__item--auto {
    margin-top: auto;
}

.l-flex__item--fixed {
    flex-grow: 0;
    flex-shrink: 0;
}

.l-flex__item--flexible {
    flex: 1 1 auto;
}

.results-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 45%;
    overflow: hidden;
    background-color: white;
    line-height: 1.1;

    transition-property: width, right;
    transition-duration: 0.5s;
    box-shadow: 0 0 5px 1px rgba(35, 35, 35, 0.25);
}

.results-sidebar.is-hidden {
    box-shadow: none;
    right: -45%;
}

.results-sidebar__body.is-loading {
    display: flex;
}

@media (max-width: 62.5em) {
    .results-sidebar {
        width: 60%;
    }

    .results-sidebar.is-hidden {
        right: -60%;
    }
}

@media (max-width: 50em) {
    .results-sidebar {
        width: 100%;
    }

    .results-sidebar.is-hidden {
        right: -100%;
    }
}

.results-sidebar__header {
    margin: 1em;
    border-bottom: 1px solid #666;
}

.results-sidebar__title {
    margin: 0 0 0.25em 0;
}

.results-sidebar__subtitle {
    margin: 0 0 0.5em 0;
    font-style: italic;
}

.results-sidebar__dismiss {
    font-size: 48px;
    width: 50px;
    height: 50px;
    background-color: #00629c;
    color: white;
    display: block;
    text-align: center;
    text-decoration: none;
}

.results-sidebar__footer {
    margin: 1em;
}

.results-sidebar__body {
    overflow-y: auto;
    padding: 0 1em;
}

.results-sidebar__body.is-loading {
    display: flex;
}

.loading {
    margin: 0 auto;
    align-self: center;
    justify-self: center;
}

.results-sidebar__logo {
    height: 2em;
}

div.tooltip { 
	position: absolute;
	text-align: center;
	width: auto;
	max-width: 300px;
	height: auto;
	padding: 2px;
	background-color: #61666d;
	border: 0px;
	border-radius: 8px;
	z-index: 10;
	opacity: 0;
}

.tooltiptitle {
	font-size: .8rem;
	font-weight: bold;
	color: #fff;
	padding: 0px;
	border-radius: 0px;
	margin: 0px;
}

.tooltiptext {
	font-size: .65rem;
	padding: 0px;
	color: #fff;
	border-radius: 0px;
	margin: 0px;
}

.news-item + .news-item {
    margin-top: 1em;
}

.news-item__header {
    margin: 0.5em 0;
}

.news-item__image {
    flex-basis: 100px;
    margin-right: 0.5em;
}

.news-attribution {
    color: #666;
    font-size: smaller;
    font-style: italic;
    margin-top: 0.25em;
}

.news-attribution__image {
    margin-right: 0.25em;
}

.nolink {
	text-decoration: none;
	color: inherit;
}

.sidebar-toggle {
    display: block;
    position: absolute;
    right: 0;
    margin-top: 1em;
    width: 10em;
    padding: 1em;
    text-decoration: none;
    color: white;
    background-color: #f37221;

    border-left: 0.5em solid #c6520a;
}

.sidebar-toggle:hover {
    color: white;
    background-color: #f48139;
    border-left-color: #de5c0b;
}

.sidebar-toggle:focus, .sidebar-toggle:active {
    color: white;
}

.u-position-relative {
    position: relative;
}

.l-constrain {
	margin-left: auto;
	margin-right: auto;
	max-width: 63%;
	padding-left: 1.5rem;
	padding-right: 1.5rem; 
}

.l-constrain--no-padding {
	padding-left: 0;
	padding-right: 0; 
}

.l-constrain--wide {
	max-width: 90%;
}

.l-constrain--wider {
	max-width: 95%;
}

@media (max-width: 50em) {
    .l-constrain--wide {
        max-width: 100%;
    }
}


@media (max-width: 62.5em) {
    .l-constrain--wide-mobile {
        max-width: 90%;
    }
}

.l-constrain--narrow {
    max-width: 50%;
}

.legendQuant {
	font: .6rem sans-serif;
}

.legendQuant .label {
    fill: white;
    text-shadow: 1px 1px 1px black;
}

.legendQuant .swatch {
    stroke: grey;
}

.legendQuant-2 {
	font: .6rem sans-serif;
}

.singlespace {
	line-height: .6rem;}

.site-name__link {
  display: inline-block;
  padding: 0.1447368421rem 0;
  text-decoration: none; }

.site-name__logo {
  border-right: 1px solid #e9e3db;
  display: inline-block;
  margin-right: 0.2105263158rem;
  padding-right: 0.5789473684rem;
  vertical-align: middle; }

.site-name__slogan {
  color: #f37221;
  font-size: 1.2105263158rem;
  font-weight: 700;
  vertical-align: middle; }

.site-name__context {
  color: #ffffff;
  background-color: #f37221;
  font-size: 1.2105263158rem;
  font-weight: 700;
  padding: 10px 10px 10px 10px;
  vertical-align: middle; }
  
.billboard {
  background-color: #232323;
  color: #c2e5f7;
  margin-bottom: 1.2105263158rem;
  padding: 2.3rem 0 6rem; }

.billboard__title {
  border-bottom: 1px solid #3a3a3a;
  color: #fff;
  font-size: 1.8421052632rem;
  line-height: 1.0714285714;
  margin-bottom: 2.4210526316rem;
  padding-bottom: 1.2105263158rem; }

@media (min-width: 62.5em) {
    .billboard__selectors {
        flex: 0 0 30%;
    }
}

@media (min-width: 50em) and (max-width: 62.5em) {
    .billboard__selectors {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .billboard__selectors > * {
        flex-basis: 48%;
    }
}

.billboard__map {
    flex: 1 1 auto;

    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 62.5em) {
    .billboard__map {
        margin-top: 2rem;
    }
}

.map__shape {
    fill: black;
    fill-opacity: 0;
    stroke: #bec6d3;
    stroke-opacity: 0.5;

    transition-property: fill, fill-opacity, stroke, stroke-opacity;
    transition-duration: 500ms;
    transition-timing-function: linear;
}

.map__shape.has-data {
    stroke-opacity: 1;
    fill-opacity: 1;
}

.ChartArea {
	font-family: Arimo, Arial, sans-serif;
	font-size: 0.75rem; 
	line-height: 16px;
	padding: 5px 25px 5px 25px;
	width: 96%;
	margin-left: auto;
	margin-right: auto;
	clear: both;
}

.chart_grid_container {
	display: grid;
	grid-template-columns: 65% 35%;
	width: 90%;
	margin: auto;
}

.disparities_county_container {
	display: grid;
	grid-template-columns: 50% 50%;
	width: 95%;
	margin: auto;
	text-align: center;
}

.disparities_county_item {
	box-shadow: 0 0 0.5263157895rem rgba(35, 35, 35, 0.25);
}

.source {
	font-size: .8rem;
}


.map_select_grid {
	display: grid;
	grid-template-columns: 10% 90%;
	width: 100%;
	margin: auto;
}

.chart_legend {
	width: 100%;
	text-align: center;
	margin: auto;
	margin-top: 5px;
}

.chart_legend_center {
	padding-top: 30px !important;
}

.Chartbreak {
	width: 50%;
	height: 2px;
	line-height: 2px;
	display: inline;
	background-color: #e1e0dc;
}

.factstable {
	font: 0.2rem;
}

.districtcontainer {
	clear: both;
}

.nextdistrict {
	float: right;
	width:20%;
	vertical-align: middle;
	font-size: 0.9em;
/* 	max-width: 106px; */
	text-align: right;
}

.previousdistrict {
	float: left;
	width:20%;
	vertical-align: middle;
	font-size: 0.9em;
/* 	max-width: 106px; */
}

.statelink {
	float: left;
	width: 60%;
	vertical-align: middle;
	font-size: 0.9em;
	text-align: center;
}

div.tab {
    overflow: hidden;
    background-color: #fff;
}

div.tab button {
    background-color: #ddd;
    float: left;
    border: none;
    outline: none;
    cursor: default;
    padding: 14px 16px;
    transition: 0.3s;
}

/* Change background color of buttons on hover */
div.tab button:hover {
    background-color: white;
}

div.tab .selected {
	background-color: white;
}


div.datatablebanner {
	height: 67px;
	max-height: initial;
	color: #f37221;
	background-color: #666666; 
}

.statefactseparator {
	column-span: 4;
	font-weight: bold;
	background-color: #cccccc;
}

.rightcell {
	text-align: right;
	padding-right: 30px;
}

.align-right { text-align: right; }

.profilerightcell {
	text-align: right;
}

.centercell {
	text-align: center;
}

.toggletab {
	background-color: #00629c;
	display: inline-block;
	width: 100%;
	border: none;
	color: #fff;
	text-align: center;
	font-size: 1.3rem;
	margin: 0 -20px 0 10px;
}

.datatablehead {
	display: table-header-group;
	cursor: pointer;
}

.datatabletitle {
	margin-left: 30%; }

.datatablelegend {
	float: right;
	color: #f37221;
	width: 30%;
	max-width: 400px;
	overflow: hidden;
}

.datatablebody {
    display: table-header-group;
    overflow-y: auto;
    max-height:600px;
}

.datatableselector {
	background-color: #666666;
	color: #F5F4F0;
	width: 40%;
	height: 100%;
	min-width: 250px;
	max-width: 400px;
	border-right: 1px solid #F5F4F0;
	border-top: none;
	border-left: none;
	border-bottom: none;
}

.stateheaders {
	background-color: #E9E3DB;
	font-style: italic;
}

.charttitle {
	text-align: center;
}

.sub_explain {
	margin-top: -17px;
	font-size: .7rem;
	padding-left: 5px;
}

.borderright {
	border-right: 1px solid #bec6d3;
}

.datatableheadcol:hover .sortarrowdiv {
	opacity: 0.4; }

.sortarrowdiv {
	opacity: 0;
	float: right;
	vertical-align: bottom;
	margin-top: 5%;
}

.tableleftdiv {
	float: left; 
	vertical-align: middle;
	width: 93%;
}
	
.sortarrowrotate {
	transform: rotate(180deg);
	-ms-transform: rotate(180deg); /* IE 9 */
	-moz-transform: rotate(180deg); /* Firefox */
	-webkit-transform: rotate(180deg); /* Safari and Chrome */
	-o-transform: rotate(180deg); /* Opera */
}

.fundinglogo {
	width: 100%;
	margin-bottom: 5px;
}

.verticalcenter {
	vertical-align: middle;
}

.aboutimg {
	float: right;
	width: 25%;
	height: 25%; }

/*  CAN USE THIS TO STYLE THE SELECTION BOXES */
.mapselect {
    width: 100%; 
    position: relative;
}

.districtshade {
	opacity: 10%; }

.c3-region.nodata {
	fill: #020202;
}

c3-region.nodata text {
	color: black;
}

.c3-line {
	stroke-width: 3px;
}

/* Map Related CSS */
.map {
    display: flex;
    flex-direction: row;
}

.map-opioid {
	align-items: center;
}

.ehe-legend-button {
	color: white;
    background-color: #766d68;
    width: 48.5%;
	font-size: .8rem;
    border: 1px solid white;
    cursor: pointer;
}

@media (max-width: 62.5em) {
    #vmap {
        flex-direction: column;
    }
}

.map-legend {
    display: flex;
    flex-direction: column;
    font-size: 0.75rem;
	width: 200px;
}

@media (max-width: 62.5em) {
    .map-legend {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.map-legend__row {
    display: flex;
    flex-direction: row;
    align-items: center;

    border-bottom: 1px solid #f5f4f0;
}

@media (max-width: 62.5em) {
    .map-legend__row {
        border: none;
    }
}

.map-legend__row > * {
    margin: 0.4rem;
}

.map-legend__swatch {
    margin-right: 0.4em;
}

#vmap .map-legend {
    flex: 0 0 auto;
}

#vmap path {
    transition: fill 250ms linear;
}

#vmap svg.is-loading {
    fill-opacity: 0.5;
    pointer-events: none;
}

.map-legend__swatch span {
    width: 15px;
    height: 15px;
    display: block;
}

.map-legend__label {
	font-size: .65rem;
}

.map-wrapper {
    width: 100%;
    display: block;
}

.map-wrapper::after {
    /* Maintains 950x500 aspect ratio */
    padding-top: 52.63%;
    content: '';
}

.map--hero {
    background-color: #00629c;
}

.active {
	stroke: #ffff00; 
	stroke-width: 1.5px;
}

.table--indicator th,
.table--indicator td {
    font-size: 0.85rem;
}

tr.is-nation th,
tr.is-nation td {
    background-color: #e9e3db;
    font-style: italic;
}

.sort--descending::after {
    background-image: url(/images/arrow--charcoal.svg);
    display: inline-block;
    margin-left:10px;
    width: 14px;
    height: 19px;
    content: '';
    opacity: 0.4;
    vertical-align: middle;

    transform: rotate(180deg);
    -ms-transform: rotate(180deg); /* IE 9 */
    -moz-transform: rotate(180deg); /* Firefox */
    -webkit-transform: rotate(180deg); /* Safari and Chrome */
    -o-transform: rotate(180deg); /* Opera */
}

.sort--ascending::after {
    background-image: url(/images/arrow--charcoal.svg);
    display: inline-block;
    margin-left:10px;
    width: 14px;
    height: 19px;
    content: '';
    opacity: 0.4;
    vertical-align: middle;
}

.u-align-unset {
    text-align: unset;
}

.selectors {
    margin: 1rem 0 1.5em;
    display: flex;
    flex-direction: row;
/*     align-items: center; */
    border-bottom: 1px solid #00629c;
    padding: 0 1em;
}

.selector {
    background-color: #fff;
    border: 1px solid #00629c;
    border-bottom: none;
    color: #0170b2;
    cursor: pointer;
    display: inline-block;
    font-size: 0.9473684211rem;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    line-height: 1;
    padding: 1em 1.5em;
    text-align: center;
    text-decoration: none;
    vertical-align: top;
    white-space: normal;
    margin: 0;
    width: 25%;
}

@media (max-width: 62.5em) {
    .selector {
        width: 50%;
    }
}

.selector_sidebar {
    background-color: #fff;
    border: 1px solid #00629c;
    border-bottom: none;
    color: #0170b2;
    cursor: pointer;
    display: inline-block;
    font-size: 0.85rem;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    line-height: 1;
    padding: 0.3em 1.5em;
    text-align: center;
    text-decoration: none;
    vertical-align: top;
    white-space: normal;
    margin: 0 -1.05% 0 0;
    width: auto;
}

.selector--small {
    padding: 0.5em 1em;
}

.selector:focus,
.selector:hover {
    background-color: #0170b2;
    color: #fff;
    outline: 0;
}

.selector:active {
    background-color: #0170b2;
    color: #fff;
}

.ehe-legend-button.is-active {
	background-color: #f37221;
    color: #fff;
}

.ehe-legend-button.is-disabled {
	background-color: #b8b8b8;
    color: #666;
}


.selector.is-active {
    background-color: #00629c;
    color: #fff;
}

.selector.is-active:focus,
.selector.is-active:hover {
    background-color: #0170b2;
}

.selector.is-active:active {
    background-color: #0170b2;
}



.selector.is-disabled {
    border: 1px solid #d6d7d9;
    border-bottom: none;
    background-color: #d6d7d9;
    color: #323a45;
    cursor: default;
    pointer-events: none;
}

.pptxbutton {
	background-color: #00629c;
    color: #fff;
	padding: 5px;
	border: none;
}

.pptxbutton:hover {
	background-color: #fff;
    color: #00629c;
}

.year-selector__year {
    margin: 0.25rem;
    padding: 0.5rem;
    font-size: 1.2rem;
    line-height: 1;
    text-decoration: none;
    color: #00629c;
    border-radius: 0.5rem;
}

.year-selector__year:hover, .year-selector__year:focus {
    color: white;
    background-color: #0170b2;
}

.year-selector__year.is-active {
    color: white;
    background-color: #00629c;
}

.year-selector__year.is-active:hover, .year-selector__year.is-active:focus {
    background-color: #0170b2;
}

.year-selector.is-loading .year-selector__year,
.year-selector__year.is-disabled {
    cursor: default;
    pointer-events: none;
    color: #d6d7d9;
}

.map-county {
    stroke: grey;
}

.map__county {
  stroke: #fff;
  stroke-width: 0.3;
}
  .map__county.is-vulnerable, .map__county.in-district {
    fill: #f37221; }

.map__state:hover .map__county, .map__state:focus .map__county {
    fill-opacity: 0.75;
}

/* generated with grunt-sass-globbing */
/* generated with grunt-sass-globbing */
/* generated with grunt-sass-globbing */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section {
  display: block; }

b,
strong {
  font-weight: inherit; }

b,
strong {
  font-weight: bolder; }

code,
kbd,
pre,
samp {
  font-size: 1em; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

audio,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

button,
input,
optgroup,
select,

button,
input {
  overflow: visible; }

button,
select {
  text-transform: none; }

button,
html [type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; }

button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  border-style: none;
  padding: 0; }

button::-moz-focusring,
[type='button']::-moz-focusring,
[type='reset']::-moz-focusring,
[type='submit']::-moz-focusring {
  outline: 1px dotted ButtonText; }

[type='checkbox'],
[type='radio'] { box-sizing: border-box; }

[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto; }

[type='search'] {
  -webkit-appearance: textfield;
  outline-offset: -2px; }

[type='search']::-webkit-search-cancel-button,
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none; }

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit; }

template,
[hidden] {
  display: none; }

abbr,
blockquote,
code,
kbd,
q,
samp,
tt,
var {
  -webkit-hyphens: none;
      -ms-hyphens: none;
          hyphens: none; }

[tabindex='-1']:focus {
  outline: none !important; }

::-moz-selection {
  background: #c2e5f7;
  color: #232323;
  text-shadow: none; }

::selection {
  background: #c2e5f7;
  color: #232323;
  text-shadow: none; }

*,
*::before,
*::after {
  box-sizing: inherit; }

a {
  background-color: transparent;
  color: #00629c;
  outline-offset: 0.1052631579em;
  -webkit-text-decoration-skip: objects a; }
  a :active, a:hover {
    outline: 0; }
  a:hover, a:focus {
    color: #c6520a; }

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted; }

abbr:hover {
  cursor: help; }

audio:not([controls]) {
  display: none;
  height: 0; }

blockquote {
  margin: 0 1.5em 1.2105263158rem; }

body {
  background-color: #f5f4f0;
  color: #333;
  margin: 0;
  padding: 0;
  word-wrap: break-word; }

button {
  overflow: visible; }

canvas {
  display: inline-block; }

caption {
  margin-bottom: 0.6052631579rem; }

dd {
  margin-bottom: 1.2105263158rem; }

dfn {
  font-style: italic; }

dl {
  margin: 0 0 1.2105263158rem; }

fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

figure {
  margin: 0 0 1.2105263158rem; }

h1, h2, h3, h4, h5, h6, h7 {
  color: #f37221;
  font-weight: 400;
  -webkit-hyphens: none;
      -ms-hyphens: none;
          hyphens: none;
  margin: 1rem 0 1.2105263158rem;
  text-rendering: optimizeLegibility; }

h2 {
  text-align: center;
  font-size: 1.7105263158rem;
  line-height: 1.0769230769; }

h3 {
  font-size: 1.2105263158rem;
  line-height: 1.3043478261; }
  
hr {
  border: 1px solid #666;
  box-sizing: content-box;
  height: 0;
  margin: 1.2105263158rem 0;
  padding-bottom: -1px; }

html {
  box-sizing: border-box;
  font-size: 118.75%;
  line-height: 1.5;
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%; }

@media (max-width: 1250px){
	html {
		font-size: 1.5vw;
	}
}
          
@media (max-width: 800px){
	html {
		font-size: 80%;
	}
}

iframe {
  border: 0; }

img {
  border: 0;
  font-style: italic;
  height: auto;
  max-width: 100%; }

input {
  line-height: normal; }

legend {
  border: 0;
  box-sizing: border-box;
  color: inherit;
  display: table;
  margin: 0;
  max-width: 100%;
  padding: 0;
  white-space: normal; }

li {
  margin-bottom: 0.6052631579rem; }
  li:last-child {
    margin-bottom: 0; }

mark {
  background: #ff0;
  color: #000; }

ol {
  margin: 0 0 1.2105263158rem;
  padding: 0 0 0 1.5em; }
  ol ol,
  ol ul {
    margin: 0.6052631579rem 0 0; }

optgroup {
  font-weight: bold; }

p {
  margin: 0 0 1.2105263158rem; }

pre {
  margin: 0 0 1.2105263158rem;
  overflow: auto; }

small {
  font-size: 0.9473684211rem; }

sub {
  bottom: -0.25em; }

summary {
  display: list-item; }

sup {
  top: -0.5em; }

svg:not(:root) {
  overflow: hidden; }

table {
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 1.2105263158rem;
  min-width: 100%; }

td,
th {
  background-color: #fff;
  border-bottom: 1px solid #f5f4f0;
  font-size: 0.7894736842rem;
  font-weight: 400;
  padding: 0.5789473684rem;
  text-align: left; }

textarea {
  overflow: auto; }

th {
  font-weight: 700; }

thead td,
thead th {
  border-bottom: 2px solid #f5f4f0;
  font-size: 0.8947368421rem;
  font-weight: 700; }

ul {
  list-style-type: disc;
  margin: 0 0 1.2105263158rem;
  padding: 0 0 0 1.2em; }
  ul ol,
  ul ul {
    margin: 0.6052631579rem 0 0; }

@media print {
  * {
    background-color: transparent !important;
    box-shadow: none !important;
    color: #000 !important;
    text-shadow: none !important; }
  a,
  a:visited {
    text-decoration: none; }
  a[href]::after {
    font-family: Arial, sans-serif;
    content: " <" attr(href) ">";
    font-size: 10pt;
    font-weight: normal;
    text-transform: lowercase; }
  a[href^='javascript:']::after,
  a[href^='mailto:']::after,
  a[href^='tel:']::after,
  a[href^='#']::after,
  a[href*='?']::after {
    content: ''; }
  abbr[title]::after {
    content: " (" attr(title) ")"; }
  blockquote,
  img,
  li,
  pre,
  tr {
    page-break-inside: avoid; }
  h1 a::after,
  h2 a::after,
  h3 a::after,
  h4 a::after,
  h5 a::after,
  h6 a::after {
    display: inline-block; }
  h2,
  h3,
  h4 {
    page-break-after: avoid; }
  h2,
  h3,
  h4,
  p {
    orphans: 3;
    widows: 3; }
  iframe,
  nav {
    display: none; }
  img {
    max-width: 100% !important; }
  thead {
    display: table-header-group; }
  @page {
    margin: 2cm; } }

md-content {
  background-color: transparent;
  color: inherit; }

/* generated with grunt-sass-globbing */
.form-item__checkbox,
.form-item__radio {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
  word-wrap: normal; }

.l-page::after {
  clear: both;
  content: '';
  display: table; }

html, .button {
  font-family: Arimo, Arial, sans-serif; }

h1, h2, h3, h4, h5, h6 {
	font-family: Arimo, Arial, sans-serif;
	font-style: normal;
	font-weight: 200;
}

code,
kbd,
pre,
samp {
  font-family: Consolas, "Lucida Console", "Liberation Mono", "Courier New", monospace, sans-serif; }

/* generated with grunt-sass-globbing */
.l-columns {
  -ms-flex-line-pack: center;
      align-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: -1.5rem;
  margin-right: -1.5rem; }

.l-columns__item {
  margin: 0 1.5rem;
  width: 100%; }

@media (min-width: 37.5em) {
  .l-columns--2 {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap; }
    .l-columns--2 .l-columns__item {
      width: 50%; }
      .l-columns--2 .l-columns__item.is-right-aligned {
        text-align: right; } }

@media (min-width: 50em) {
  .l-columns--3 {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap; }
    .l-columns--3 .l-columns__item {
      width: 33.3333333333%; }
      .l-columns--3 .l-columns__item.is-right-aligned {
        text-align: right; } }

@media (min-width: 37.5em) {
  .l-columns--4 .l-columns__item {
    width: 50%; } }

@media (min-width: 62.5em) {
  .l-columns--4 {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap; }
    .l-columns--4 .l-columns__item {
      width: 25%; }
      .l-columns--4 .l-columns__item.is-right-aligned {
        text-align: right; } }

@media (min-width: 50em) {
  .l-page__main {
    float: right;
    width: 70%; } }

@media (min-width: 50em) {
  .l-page__sidebar {
    float: left;
    width: 25%; } }

.l-slat::after {
  clear: both;
  content: '';
  display: table; }

.l-slat__media {
  margin: 0;
  padding: 0 0 1em; }
  @media (min-width: 37.5em) {
    .l-slat__media {
      float: left;
      padding-right: 1em; } }
  .l-slat__media:empty {
    padding: 0; }
  .l-slat__media a,
  .l-slat__media img {
    display: block; }

.l-slat__content {
  display: table-cell;
  width: 10000px; }

@media (min-width: 37.5em) {
  .l-slat--reversed .l-slat__media {
    float: right;
    padding-left: 1em;
    padding-right: 0; } }

/* generated with grunt-sass-globbing */

@media (min-width: 62.5em) {
  .billboard__main {
    -webkit-box-align: top;
        -ms-flex-align: top;
            align-items: top;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; } }

@media (max-width: 50em) {
    .selector-group + .selector-group {
        margin-top: 2rem;
    }
}

@media (min-width: 62.5em) {
    .selector-group + .selector-group {
        margin-top: 4rem;
    }
}

.selector-group__title {
    color: #b8e4f8;
    font-size: 1.45rem;
}

.selector-group__ete {
    color: #f37221;
    font-size: 1.45rem;
}

.button {
  background-color: #00629c;
  border: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 0.9473684211rem;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  padding: 1em 1.5em;
  text-align: center;
  text-decoration: none;
  vertical-align: top;
  white-space: normal;
  margin: 0; }
  .button:focus, .button:hover {
    background-color: #0170b2;
    color: #fff;
    outline: 0; }
  .button:active {
    background-color: #0170b2;
    color: #fff; }
  .button[disabled] {
    background-color: #d6d7d9;
    color: #323a45;
    cursor: default;
    pointer-events: none; }
  .button + .button {
    margin-left: 0.5em; }

.button__icon {
  margin-right: 0.2631578947rem;
  vertical-align: middle; }

.button--small {
  font-size: 0.7894736842rem; }

.button--prominent {
    display: inline-block;
    margin-top: 2rem;
    margin-bottom: 1rem;
    width: 10rem;
    box-shadow: 0 0.25rem 1rem rgba(35, 35, 35, 0.25);
}

.l-cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;

    margin-top: -3rem;
}

@media (min-width: 50em) {
    .l-cards {
        justify-content: space-between;
    }
    .cardcolumns {
		justify-content: space-between;
	}
}

.l-cards__card {
    flex: 0 0 100%;
}

@media (min-width: 50em) {
    .l-cards__card {
        flex-basis: 45%;
    }
}

@media (min-width: 62.5em) {
    .l-cards__card {
        flex-basis: 30%;
    }
}

.cardcolumns {
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.cardcolor {
	background-color: #665b55 !important;
	color: #fff;
}

.cardarticle {
  width: 48%;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 0 0.9rem rgba(35, 35, 35, 0.25);
  margin-bottom: 1rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  padding: 1.2105263158rem 1rem; 
  min-height: 320px;
}

.cardarticle__title {
  font-size: 1.03rem;
  color: #4f4f4f;
  font-weight: bold;
}

.cardarticle__footnote {
	font-size: 0.5rem;
	color: #4f4f4f;
}
  
.card {
  background-color: #fff;
  box-shadow: 0 0 0.5263157895rem rgba(35, 35, 35, 0.25);
  margin-bottom: 2.4210526316rem;
  padding: 1.2105263158rem 2.4210526316rem; }
  
.card_divided {
	display: grid;
	grid-template-columns: auto minmax(350px, 27%);
	padding: 10px 5px 10px 5px;
}
  
.card--homepage {
    padding-top: 3rem;
    padding-bottom: 3rem;
    text-decoration: none;
    color: unset;
    transition: box-shadow 500ms ease-in-out;
}

.card--homepage:hover, .card--homepage:focus {
    color: unset;
    box-shadow: 0 1rem 2rem rgba(35, 35, 35, 0.125);
}

.card--homepage:hover .button, .card--homepage:focus .button {
    background-color: #0170b2;
    color: #fff;
    outline: 0;
}

.card--homepage .card__title {
    margin: 0 0 0.8rem 0;
    font-family: Arimo, Arial, sans-serif;
    font-weight: 400;
}

.card__title {
  color: #f37221;
  font-size: 1.7105263158rem;
  line-height: 1.0769230769;
  margin-bottom: 1.2105263158rem; }

.card__number {
    text-align: center;
    font-weight: bold;
    font-size: 2rem;
    line-height: 1.0769230769;
    margin-bottom: 1.2105263158rem;
}

.card__details {
  color: #666;
  margin-bottom: 1.2105263158rem;
  margin-top: -0.6052631579rem; }

.card__chart {
  width: 50%;
/*   float: left; */
  margin-bottom: 1.2105263158rem;
  margin-top: -0.6052631579rem;
  border-bottom: 1px solid #bec6d3;
}
  
.card__chart-right{
  float: right; }
 
.vline {
	height:500px;
	min-height:500px;
	background-color: grey;
	max-width:2px;
}

.ete_title_grid {
	display: grid;
	grid-template-columns: 75% 20%;
	grid-column-gap: 5%;
}
 
.ete_subtitle_grid {
	display: grid;
	grid-template-columns: 80% 20%;
	grid-column-gap: 0%;
}

.ete_bottom {
	position: absolute;
	bottom: 0px;
}

.ete_chart_contain {
	display: grid;
	grid-template-columns: 49.925% 0.15% 49.925%;
	grid-column-gap: 0%;
}

.is_hidden {
	display: none;
}

.ete_policies_grid {
	display: grid;
	grid-template-columns: 49% 49%;
	grid-column-gap: 2%;
	grid-row-gap: 2%;
}

.ete_policies_subgrid {
	display: grid;
	grid-template-columns: 49% 49%;
	grid-column-gap: 2%;
	grid-row-gap: 1%;
}

@media (max-width: 950px){
	.ete_chart_contain {
		display: block;
		width: 98%;
	}
	
	.is_hidden {
		display: none;
	}
	
	.ete_policies_subgrid {
		display: grid;
		grid-template-columns: auto;
		grid-column-gap: 0%;
		grid-row-gap: .5%;
	}
	
	.vline {
		display: none;
	}

	.hline {
		display: none;
	}
}


.ete_policies_container {
	background-color: #dbdcdd;
	text-align: center;
	box-shadow: 0 0 0.5263157895rem rgba(35, 35, 35, 0.25);
	padding: 1rem;
}

.ete_policies_item {
	background-color: white;
	padding: .1rem;
	color: #766d68;
	
	box-shadow: 0 0 0.5263157895rem rgba(35, 35, 35, 0.25);
}

.ete_policies_item h1, .ete_policies_item h2, .ete_policies_item h3, .ete_policies_item h4 {
	color: #766d68;
}

.ete_policies_item p {
	margin: 0 0 0 0;
}

.ete_disagg {
	width: 90%;
	color: grey;
	font-size: 0.8rem;
	background-color: #ddd;
	margin: auto;
	text-align: center;
}

.ete_disagg_buttons {
	width: 90%;
	font-size: 0.8rem;
	margin: auto;
	text-align: center;
	display: grid;
	grid-template-columns: 25% 25% 25% 25%;
	grid-column-gap: 0%;
}

.ete_location_buttons {
	width: 90%;
	font-size: 0.8rem;
	margin: auto;
	text-align: center;
	display: grid;
	grid-template-columns: 33% 34% 33%;
	grid-column-gap: 0%;
}

.ete_chart__button {
    color: white;
    background-color: #766d68;
    width: 100%;
    border: 1px solid white;
    cursor: pointer;
}

.is_active {
    background-color: #f37221 !important;
}

.ete_explainer {
	margin-left: 15px;
	margin-right: -35px;
	box-shadow: 0 0 0.5263157895rem rgba(35, 35, 35, 0.25);
	padding: 2px 5px 0px 5px;
	font-size: .9rem;
}

.ete_explainer_content {
	max-height: 600px;
	overflow: auto;
	margin-top: 10px;
}

.ete_select_data_title {
	margin: .2rem 0 .2rem 0;
	font-size: 1.2rem;
	text-align: center;
}

.ete_select_data_ehetitle {
	margin: .2rem 0 .2rem 0;
	font-size: .9rem;
	text-align: center;
}

.ete_select_data__states {
	text-align: center;
	font-size: .9rem;
	color: #766d68;
	margin: .1rem 0 0 0;
}

.ete_select_line {
	border: 1px solid #766d68;
	margin: 0 0 .2rem 0;
}

.ete_sidebar_policies {
	width: 100%;
	font-size: 0.8rem;
	margin: auto;
	text-align: center;
	display: grid;
	grid-template-columns: 25% 25% 25% 25%;
	grid-column-gap: 0%;
}

.ete_sidebar_policies_image {
	margin: auto;
	width: 70%;
}

.ete_sidbar_table_container {
	display: grid;
	grid-template-columns: 48% 48%;
	grid-column-gap: 4%;
}

.ete_sidebar_table td,th {
	font-size: 0.7rem !important;
	padding: 0 !important;
}

.ete_sidebar_selector {
	font-size: 0.85rem;
	text-align-last: center;
	color: #ffffff;
	background-color: #f37221;
	border: 0px;
	width: 100%;
	padding: 3px 0 3px 0;
	-webkit-appearance: button; /* hide default arrow in chrome OSX */
}
 
.explore {
  margin-bottom: 1.2105263158rem;
  text-align: center; }

.explore__title {
  font-size: 1.0526315789rem;
  font-weight: 700;
  line-height: 1.175; }

.explore__link {
  text-decoration: none; }

.fact {
  background-color: #00629c;
  color: #fff;
  margin: 1.2105263158rem 0 2.4210526316rem;
  padding: 1.2105263158rem 1.5rem;
  text-align: center; }

.fact__title {
  color: #f4bf08;
  font-size: 1.2105263158rem;
  line-height: 1.0869565217; }

.fact__data {
  font-size: 5.2631578947rem;
  font-weight: 700;
  line-height: 1; }

.fact__percent {
  font-size: 50%;
  font-weight: 400;
  line-height: 1.25;
  vertical-align: top; }

.fact__text {
  border-top: 1px solid #4291c1;
  font-size: 1.2105263158rem;
  line-height: 1.0869565217;
  margin-top: 0.5263157895rem;
  padding-top: 0.6842105263rem; }

.footer {
  background-color: #232323;
  color: #e9e3db;
  margin-top: 46px;
  padding: 2.4210526316rem 0; }

@media (min-width: 51.875em) {
  .footer__first {
    float: left; } }

.footer__second {
  margin-top: 1.2105263158rem; }
  @media (min-width: 51.875em) {
    .footer__second {
      float: right;
      margin-top: 0;
      text-align: right; } }

@media (min-width: 68.75em) {
  .header__first {
    float: left; } }

.header__second {
  margin-top: 1.2105263158rem; }
  @media (min-width: 68.75em) {
    .header__second {
      float: right;
      margin-top: 0;
      text-align: right; } }

.hero {
  background-image: linear-gradient(to bottom, #111 0, #232323 1.2105263158rem, #232323 17.7894736842rem, transparent 17.8421052632rem);
  margin-bottom: 1.2105263158rem;
  padding-top: 3.6315789474rem; }

@media (min-width: 37.5em) {
  .hero__heading {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 2.4210526316rem; } }

.hero__title {
  color: #fff;
  font-size: 1.8421052632rem;
  line-height: 1.0714285714;
  margin-bottom: 1.2105263158rem; }
  @media (min-width: 37.5em) {
    .hero__title {
      display: inline-block;
      margin-bottom: 1.2105263158rem; } }

.hero__download {
  margin-bottom: 1.2105263158rem; }
  @media (min-width: 37.5em) {
    .hero__download {
      display: inline-block;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      margin-bottom: 0;
      margin-left: 3rem; } }

@media (min-width: 50em) {
  .hero__main {
    -webkit-box-align: top;
        -ms-flex-align: top;
            align-items: top;
    box-shadow: 0 0 0.5263157895rem rgba(35, 35, 35, 0.25);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; } }

.hero__media {
  background-color: #00629c;
  color: #fff; }
  @media (min-width: 50em) {
    .hero__media {
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%; } }

.hero__maps {
    background-color: #f5f4f0;
    width: 100%;
}

.l-grid-2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.l-grid-2__item {
    flex: 0 1 49%;
}

@supports (display: grid) {
    .l-grid-2 {
        display: grid;
        grid-template-columns: 49% 49%;
        grid-column-gap: 2%;
    }
}

.hero__content {
  background-color: #fff;
  padding: 0rem 1.5rem; }
  @media (min-width: 50em) {
    .hero__content {
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
      max-height: 30.0526315789rem;
      overflow-y: scroll; } }

.impact {
  margin: 0 0 2.4210526316rem;
  text-align: center;
}

.impact img {
	width: 60%;
	height: 60%;
	
}

.impact__title {
  border-bottom: 2px solid #00629c;
  color: #333;
  font-weight: 700;
  margin-bottom: 1.2105263158rem;
  padding-bottom: 1.2105263158rem; }

.line-list {
  border-top: 2px solid #f5f4f0;
  list-style: none;
  margin: 1.2105263158rem 0;
  padding: 0; }

.line-list__item {
  border-bottom: 2px solid #f5f4f0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.7894736842rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 1.1;
  margin: 0;
  padding: 1em 0; }

.line-list__label {
  display: inline-block;
  font-weight: 700; }

.line-list__data {
  display: inline-block;
  font-weight: 400; }

.nav {
  list-style: none;
  padding: 0; }

.nav__item {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  text-align: right;
  font-size: .85rem;
}
  
.nav--footer .nav__item, .nav--main .nav__item {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap; }

.policy {
  margin: 1.2105263158rem 0 2.4210526316rem;
  padding-top: 0.3157894737rem;
  position: relative;
  text-align: center; }

.policy__info {
  left: 50%;
  position: absolute;
  top: 0;
  -webkit-transform: perspective(1px) translateX(-4.6315789474rem);
          transform: perspective(1px) translateX(-4.6315789474rem); }

.policy__info-icon {
	vertical-align: top;
	text-align: left;
	margin-left: -40px;
}
          
.policy__text {
  display: block;
  font-size: 1.0526315789rem;
  font-weight: bold;
  line-height: 1.25;
  margin: 0 auto;
  padding-bottom: 10px;
  max-width: 15.7894736842rem; }
  
.funding {
  margin: 1.2105263158rem 0 2.4210526316rem;
  padding: 0.3rem 0.3rem 0.3rem 0.3rem;
  position: relative;
  text-align: center;
  background-color: #dbdcdd;
  height: 90%;
}

.funding__info {
  text-align: center;
  line-height: 1.2;
  font-size: 1.052rem;
  vertical-align: bottom; }

.funding__text {
  display: block;
  padding-right: 10px;
  padding-left: 10px;
  text-align: left;
  font-size: .8rem;
  line-height: 1.2;
  margin: auto; }

.sidebar-heading {
  border-bottom: 2px solid #00629c;
  color: #333;
  font-size: 1.2105263158rem;
  font-weight: 700;
  line-height: 1.4130434783;
  margin-bottom: 0.6052631579rem;
  padding: 0.6052631579rem 0; }

@media print {
  .nav--footer {
    display: none; } }

.nav__item {
  margin-right: 1.2105263158rem; }
  .nav--footer .nav__item:last-child {
    margin-right: 0; }

.nav__link {
  font-size: 0.7894736842rem;
  text-decoration: none; }
  .nav--footer .nav__link:focus, .nav--footer .nav__link:hover {
    color: #c2e5f7; }

.nav--main {
  margin: 0; }
  @media print {
    .nav--main {
      display: none; } }
  .nav--main .nav__item {
    margin-right: 1.5rem; }
    .nav--main .nav__item:last-child {
      margin-right: 0; }
  .nav--main .nav__link {
    color: #666;
/*     display: inline-block; */
    font-size: 0.7894736842rem;
    font-weight: 700;
    line-height: 2.6666666667;
    text-decoration: none;
    text-transform: uppercase; }
    .nav--main .nav__link:focus, .nav--main .nav__link:hover {
      color: #c6520a; }
  .nav--main md-autocomplete input {
    font-size: 0.7894736842rem;
    font-weight: 700;
    line-height: 2.6666666667;
    padding: 0 1em;
    text-transform: uppercase; }

.fa {
    text-decoration: none;
}

.PDFmapselect {
	display: none;
	text-align: center;
	width: 100%;
}

.clear {
	clear: both;
}

.selectpdf {
	text-align: center;
	width: 50%;
	margin: 0 auto;
}

.mapselectform {
	float: left;
	width: 30%;}
	
.selectbuttons {
	font-size: .7rem;
	text-align: left;
}

.facilityselect {
	position: relative; 
	top: 0px; 
	left: 0px;
	color: #636363;
	font-size: 75%;
}

/* Primarily Home Page Styles */
.EHE_home_spacer {
	margin:auto;
	padding-top: 65px;
}

.OP_home_spacer {
	height: 10px;
	min-height: 10px;
}

.EHE_home_selector {
	font-size: 1.2rem;
	padding-left: 20px;
	color: #ffffff;
	background-color: #f37221;
	border: 0px;
	width: 100%;
	height: 70px;
	-webkit-appearance: button; /* hide default arrow in chrome OSX */
}

.OP_home_selector {
	font-size: 1.2rem;
	padding-left: 20px;
	color: #ffffff;
	background-color: #00629c;
	border: 0px;
	width: 100%;
	height: 70px;
	-webkit-appearance: button; /* hide default arrow in chrome OSX */
}

.OP_home_selector::placeholder {
	color: #ffffff;
	opacity: 1;
}

.OP_home_selector::-ms-input-placeholder {
	color: #ffffff;
	opacity: 1;
}

.home_selector__items {
	font-size: 1rem;
	background-color:#ffffff !important;
	color:black !important;
	max-width: 400px;
}

.menu_selector__district {
	width: 300px;
	height: 27px;
	color: grey;
	padding-left: 3px;
	background-color: #ffffff;
	border: 1px solid grey;
	border-radius: 5px;
}

.menu_selector__state {
	width: 150px;
	height: 27px;
	color: grey;
	padding-left: 3px;
	background-color: #ffffff;
	border: 1px solid grey;
	border-radius: 5px;
}

.statemap_selector {
	width: 100%;
	height: 35px;
	color: black;
	background-color: white;
	font-size: .8rem;
	border: 1px solid grey;
}


/* Styling for IE Warning Flag  */
.warningflag {
	width: 100%;
	background-color: #bc0909;
	color: #ffffff;
	height: 50px;
	text-align: center;
}

.warningflagtext {
	display: inline-block;
	vertical-align: middle;
	line-height: normal;
}
