﻿/* Headings ------------------------------------ */
.heading-2{
  text-transform: none !important;
  font-size: 1.5em !important;
  margin-bottom: 10px !important;
  padding-bottom: 5px !important;
  padding-right: 20px !important;
  width: fit-content !important;
  border-bottom: 4px solid #cfd9ec !important;
display: inline-block;
  }
  .heading-3{
  font-style: italic !important;
  font-size: 1.3em !important;
  text-transform: none !important;
  margin-bottom: 5px !important;
  }
  .heading-4{
  font-size: 1em !important;
  font-weight: bold !important;
  text-transform: none !important;
  margin-bottom: 5px !important;
  }
  .heading-5{
  font-size: 1em !important;
  font-style: italic !important;
  text-transform: none !important;
  margin-bottom: 5px !important;
  }
/* Headings */

/* Tables ----------------------------- */
  #container table {
  text-align: left;
  }
  .generic-table {
    text-align: left;
    margin-bottom: 20px;
    margin-left: 5px;
    box-shadow: 0px 0px 3px #ccc;
max-width: 99%;
line-height: 24px;
    }
    .generic-table th{
    background-color: #cfd9ec;
    padding: 3px 10px 3px 5px;
    color: black;
    }
      .generic-table th[scope=row] {
	background-color: #e6f0f9;
	font-weight: 400;
}
    .generic-table td, .generic-table th{
    padding: 10px 10px 5px 10px;
    min-width: 100px;
    text-align:left;
    }
    .generic-table tr:nth-child(odd){
    background-color: #eaf0f6;
    }
  .generic-table .highlight1{
  background-color: #ffde7d !important;
  }
/* Tables */

/* Accordion Drop Down ------------------------- */
.content-box{
  width: 97%;
  overflow: hidden;
  border-radius: 5px;
  background-color: white;
  margin: 0 auto; 
  -webkit-transition: height .5s ease; 
  -o-transition: height .5s ease; 
  transition: height .5s ease;
padding: 5px 10px 2px 10px;
}

.content-box-title {
color: black !important;
padding: .6em 1.4em;
margin:0px;
margin-bottom: .4em !important;
margin-top: 0 !important;
cursor: pointer;
box-shadow: 0px 0px 3px #ccc;
border-radius: .4em;
text-transform: none !important;
display: flex;
align-items: center;
background-color: #eaf0f6;
}
.content-box-title.active {
background-color: #cfd9ec !important;
color:  black !important;
}

/*mimics site-wide outline on links*/
.content-box-title:focus{
 background-color: #cfd9ec;
outline: 3px solid #42586F; 
outline-offset: 2px;
}

.content-box-title:hover{
 background-color: #cfd9ec;
}

.content-content{
  height: auto;
  display: none;
  padding-bottom: 1em;
}

.hidden {
  position:absolute;
  left:-10000px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
/* Accordion Drop Down */

/* Sidebar Links -------------------------- */
#left .sidebar-links{
  list-style: none;
      margin: 0px 1em;
      padding: 0;
      display: flex;
      flex-direction: column;
  
  }
  #left .sidebar-links li {
  margin: .2em 0px;
  }
  #left .sidebar-links a {
      display: block;
      background: rgb(2, 56, 97);
      margin-bottom: 0px;
      color: white;
      font-weight: bold;
      font-family: Arial, Helvetica, sans-serif;
      text-align: center;
      padding: 1em .2em;
  }
  
  #left .sidebar-links a:hover, #left .sidebar-links a:focus
  {
    cursor:pointer;
    background: rgb(0, 38, 67);
    text-decoration: underline;
  }
/* Sidebar Links */