

*,
*:before,
*:after {
  box-sizing: border-box;
}

@media screen and (min-width: 600px) {
  html,
  body {
    
    background: #fff;
  }
}
h1 {
 
  text-align: center;
  padding: 0.5em;
}
section {
  zoom: 1;
  position: relative;
  height: auto;
}
section:after,
section:before {
  /*content: "";*/
  display: table;
}
section:after {
  clear: both;
}
section h4 {
  background: rgba(0,0,0,0.1);
  cursor: pointer;
  /*border: 1px solid rgba(0,0,0,0.2);*/
  border-top: none;
  padding: 15px 20px;
}
section h4:first-child {
  /*border-top: 1px solid rgba(0,0,0,0.2);*/
}
@media screen and (min-width: 600px) {
  section h4 {
    position: relative;
    width: 33.333333333333336%;
    height: 20%;
    display: block;

  }
}
section ul {
  zoom: 1;
  position: relative;
  height: auto;
  min-height: 100%;
  /*border: 1px solid rgba(0,0,0,0.2);*/
  border-left: none;
  display: none;
}
section ul:after,
section ul:before {
  content: "";
  display: table;
}
section ul:after {
  clear: both;
}
section ul li {
  list-style: circle;
}
@media screen and (min-width: 600px) {
  section ul {
    position: absolute;
    width: 66.66666666666667%;
    right: 0;
    top: 0;
    padding: 15px 30px;
  }
}
section .active {
  cursor: default;
  /*border-bottom: 1px solid rgba(0,0,0,0.2);*/
  border-right: none;
  	color:#fff;
	font-weight:600;
}
@media screen and (min-width: 600px) {
  section .active {
    background:#c3a253;
    border-right: 1px solid rgba(0,0,0,0);
  }
}
section .active + ul {
  display: block;
}
