

html {
    background-color: white;
    color: rgba(0,0,0,0.7);
  }
  .tutTitle {
    text-align: center;
    margin-bottom: 40px;
    font-size: larger;
  }
  
  .tableContents{
    /* list-style-type: none; */
    text-align: left;
    display: block;
    width: 525px;
    margin: auto;
  }
  
  hr {
    border: 1px dashed rgba(0,0,0,0.2);
    margin: 40px ;
    

    
  }
  
  h3 {
    /* margin-top: 50px;
    background: #ec245e;
    padding: 8px;
    color: rgba(255, 255, 255, 1);
    width: 100%; */
    /* margin-left: -201px; */
  }
  
  
  a {
    color: darkcyan;
    font-weight: normal;
  }
  a:visited {
    color: darkcyan;
  }
  a:hover {
    color: lightseagreen;
  }
  
  .textHighlight {
    /* color: black; */
    font-weight: bold;
  }
  
  .taskList li {
    display: flex;
    align-items: start;
    line-height: 1.5em;
    margin-left: -12px;
    margin-bottom: 14px;
  }
  .taskList li:before {
    content: <input type="checkbox">;
    margin: -0 -20px 0 10px;
  }
  .taskList li input {
    margin-top: 0px;
  }
  
  
  /* show/Hide Divs */
  .showHideContent {
    padding: 0;
    margin: 0px 0px -4px;
  }
  
  .showHideDiv {
    border: none;
    /* border-bottom: 1px solid rgba(0,0,0,0.1); */
  }
  
  .showHideButton {
    /* border: none; */
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }
  
  .showHideButton:hover {
    border-bottom: 1px solid rgba(0,0,0,0.3);
  }
  
  
  .showHideDiv {
    border: 1px solid rgba(0,0,0,0.3);
    transition: all 0.2s ease-out;
    display:inline-block;
    margin: 12px 0;
    padding: 0px;
    width: 100%;
    overflow: clip;
  }
  .showHideButton {
    transition: all 0.2s ease-out;
    display:inline-block;
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
  }
  .showHideButton:after {
    content:'+';
    float: right;
    margin-right: 24px;
  }
  .showHideButton.isOpen:after {
    content: '–';
  }
  
  .showHideDiv:hover {
    border-color: rgba(0,0,0,0.9);
  }
  .showHideButton:hover {
    cursor: pointer;
    border-color: rgba(0,0,0,0.9);
    background-color: rgba(255,255,255,0.4);
  }
  
  .showHideContent {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.7s ease-out;
    margin-top: -12px;
    padding: 0 12px;
  }
  .showHideContent:hover {
  border-color: rgba(0,0,0,0.9);
  }
  .showHideContent li {
  margin-bottom: 6px;
  }
  
  
  
  
  /* .widep5jsWidget {
    width: 1200px;
    margin: 0 -200px;
  } */
  
  .widep5jsWidget .showHideButton{
    width: 800px;
    margin: 12px 200px;
  
  }
  
  
  /* cheat sheet table */
  table {
    border-collapse: collapse;
    width: 100%;
  }
  
  table td, table th {
    border: 1px solid rgba(0,0,0,0.1);
    padding: 8px;
  }
  
  
  /* end navigation */
  .endNav {
    background-color: darkcyan;
    color: white;
    font-size: 12pt;
    font-weight: bold;
    width: 43%;
    font-style: italic;
    line-height: 1.4em;
    padding: 12px;
  }
  .endNav:hover {
    /* text-decoration: underline; */
    /* color: #444; */
    background-color: lightseagreen;
  }
  #endNavNext {
    float: right;
    text-align: left;
    padding-left: 5%;
  }
  #endNavPrev {
    float: left;
    text-align: right;
    padding-right: 5%;
  }
  #endNavNext {
    float: right;
  }
  #endNavNone:hover {
    background-color: darkcyan;
  }
  