/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: #ffffff;
  color: #2E3438;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  font-size: 20px
  font-weight: 700;
  line-height: 28px;;
  text-align: left;
  font-size: 15px;
  transition: 0.4s;
  font-size: 20px;
  font-weight: 400;
  border: 1px solid #F78E1E;
  border-bottom: 0px;
  outline: none;
  transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.accordion:hover {
  background-color: #f3f3f3;
}
.active  {
  background-color: #ffffff;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: white;
  border-left: 1px solid #F78E1E;
  border-right: 1px solid #F78E1E;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.panel:last-child {
  border-bottom: 1px solid #F78E1E;
}
.panelBottom {
  padding: 0 18px;
  background-color: white;
  border: 1px solid #F78E1E;
  border-top: 0px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.accordion:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}


/*body and text */
.contented-outer {
    position: relative;
    background-color: #ffffff;
}
.main-content {
    padding: 0;
    position: relative;
    color: #2E3438;
    z-index: 1;
    max-width: none;
    overflow: hidden;
}
.main-content .colouring {
    background-color: #ffffff;
    padding: 10px 10px 0 5000px;
    margin: 0 140px 0 -4860px
}
.main-content .max-width {
    position: relative;
    max-width: 80%;
    margin: 0 auto;
}
.main-content h2 {
    font-size: 2.16em;
    font-weight: 400;
    color: #2E3438;
    padding: 10px 0;
    line-height: 1em;
    
}
.main-content h3 {
    font-size: 24px;
    font-weight: 400;
    color: #2E3438;
}
.main-content p {
    padding: 10px 0 10px 0;
}
.main-content .terms,
.main-content .terms:link,
.main-content .terms:visited,
.main-content .terms:hover,
.main-content .terms:active {
    color: #F78E1E;
}
@media (max-width: 890px) {
    .main-content .colouring {
        padding: 20px 20px 0 4880px;
    }
    .main-content .indented {
        padding-right: 5px;
        margin-bottom: 10px;
    	min-width: 95%;
    }
}

@media (max-width: 600px) {
    .main-content {
        padding-right: 20px;
        margin-bottom: 2.2em;
        min-width: 95%;
    }
    .main-content h2 {
        padding: 10px 0;
    }
    .main-content h3 {
        padding: 20px 0 0 0;
    }
    .main-content .colouring {
        padding: 20px 0px 0 4880px;
        margin: 0 0 0 -4860px;
    }
    .main-content .indented {
        padding-right: 5px;
        padding-left: 5px;
        margin-bottom: 10px;
    }
}