// COLLAPSIBLE DIVS 

function toggleDiv(divid){
    if(document.getElementById(divid).style.display == 'none'){
      document.getElementById(divid).style.display = 'block';
    }else{
      document.getElementById(divid).style.display = 'none';
    }
  }
  function toggleArrow(divid){
    if(document.getElementById(divid).style.backgroundPosition == '100% 0%'){
      document.getElementById(divid).style.backgroundPosition = '0% 0%';
    }else{
      document.getElementById(divid).style.backgroundPosition = '100% 0%';
    }
  }
  