.haccordion .hheader, .haccordion .hcontent{
   float: left;
   height: 250px;
  }
  
  .haccordion .hheader{
   width: 20px;
   background: #ccc;
   color: #fff;
   cursor: pointer;
  }
  
  .haccordion .hcontent{
   display: none;
   width: 0px;
   overflow: auto;
  }
  
  .haccordion .hcontent.visible{
    display: block;
    width: 475px;
  }
  
  .haccordion .hcontent p{
   margin: 5px;
  }
  
  .hheader a{
    display: block;
    with: 20px;
    height: 250px;
  }


