  body 
  {
    font-size: 1.2em;
    font-weight: 400;
    color: black;
    font-family: Lato,lato-1,lato-2, "Helvetica Neue","Helvetica","Arial",sans-serif;
    text-align: left;
    line-height: 1.2;
    /*margin: 0 0 20em 1%;*/
    font-weight: 200;
  }

  * {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  }


th
{
 }

table, th, td {
   /* border-collapse: collapse;*/
}

  caption
  {
    caption-side: bottom;
    margin-top: 1em;
  }

  b
  {
    font-weight: 700;
  }

  h1, h2
  {
    font-weight: 400;
    color: white;
    padding-top: .4em;    
  }

  h1
  {
    font-size: 3rem;
    background-color: deepskyblue;  
  }


  h2
  {
    font-size: 2rem;
    background-color: skyblue;
    margin-left: 2.5%;    
  }

  .align table
  {
    margin-left: 4%;    
  }

  h3
  {
    font-size: 1.5rem;
    margin-left: 3.5%;    
  }

  p 
  {
    margin: 1% 4% 0% 4%;

  }

  ul
  {
    margin: 1% 4% 0% 4%;
  }

  .details
  {
   border-bottom:  thin solid black; 
  }
  
 

  .selected2
  {
    background-color: #66CCFF;
    color: white;
  }

  .btn 
  {
    background-color: gray; 
    border: none;
    color: white;
    padding: 1em 1em;
    text-align: center;
    text-decoration: none;
    /*display: inline-block;*/
    font-size: 1em;
    cursor: pointer;
    text-transform: uppercase;
  }


  .btnsmall
  {
    background-color: gray; 
    border: none;
    color: white;
    padding: .5em .5em;
    text-align: center;
    text-decoration: none;
    /*display: inline-block;*/
    font-size: .7em;
    cursor: pointer;
    text-transform: uppercase;
    border-radius:.2em;


  }

  .btnsmall:hover 
  {
    background: steelblue; 
    text-decoration: underline
  }
  
   input
  {
    border-width:0px;
    border:none;
  }

  .btn:hover 
  {
    background: lightseagreen; 
    text-decoration: underline
  }
  
  th 
  {
    font-weight: normal;
    color:black;
  }

  /* Stop the spiiners on mozilla and chrome.*/
  input[type=number]::-webkit-outer-spin-button,
  input[type=number]::-webkit-inner-spin-button 
  {
    -webkit-appearance: none;
    margin: 0;
  }

  input[type=number] 
  {
    -moz-appearance:textfield;
  }
  
  footer 
  {
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1rem;
    text-align: center;
    clear: both;
    height:3em;
  }

.tabs {
  /*float: none;*/
  list-style: none;
  position: relative;
  margin: 1% 0 0 1%;
  text-align: left;
}

.tabs li {
  float: left;
  display: block;

}

.tabslabel {
  display: block;
  padding: 1.2em 1.5em;
  border-radius: .1em .1em 0 0;
  font-size: 1em;
  font-weight: normal;
  text-transform: uppercase;
  background: darkgray;
   position: relative;
  top: .2em;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.tabs .tab-content {
  z-index: 2;
  display: none;
  overflow: hidden;
  font-size: 1em;
  line-height: 1.2em;
  margin-left:10%;
  padding: 2em;
  position: absolute;
  /*top: 53px;*/
  left: 0;
  background: lightgray;
  border: 2px solid red;
  border-radius: 5px;
}



.tabs [id^="tab"]:checked ~ [id^="tab-content"] {
  display: block;
}


.zeroIndent
{
  font-weight: bold;
  padding-left:0em;
}

.oneIndent
{
  padding-left:2em;
  font-weight: bold;
}

.twoIndent
{
  padding-left:4em;
}

.twoIndent a
{
  text-decoration: none;
}

.twoIndent a:hover
{
  text-decoration: underline;
  cursor: pointer;
}

.caret::before {
  content: "\25B6";
  color: black;
  display: inline-block;
}

.caret_down::before {
  content: "\25B6";
  color: black;
  display: inline-block;
  -ms-transform: rotate(90deg); /* IE 9 */
  -webkit-transform: rotate(90deg); /* Safari */
  transform: rotate(90deg);  

}