#pagehelp .collapsible {
    background-color: #eeeeee;
    color: #045d8f;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: right;
    outline: none;
    font-size: 15px;
    border-bottom: 1px solid #a9bdc8;

  }
  
  #pagehelp  .active, .collapsible:hover {
    background-color: #045d8f;
    color:#FFF;
  }
  
  #pagehelp .collapsible:after {
    content: '\002B';
    color: #045d8f;
    font-weight: bold;
    float: left;
    margin-left: 5px;
  }
  
  #pagehelp  .active:after {
    content: "\2212";
  }
  
  #pagehelp  .content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #ffffff;
    -webkit-transition: max-height 0.2s ease-out;
    -moz-transition: max-height 0.2s ease-out;
    -ms-transition: max-height 0.2s ease-out;
    -o-transition: max-height 0.2s ease-out;
}