/* CSS TABBED PANELS*/
/*Start*/

#tab-main {
  width="100%";
  margin: 0 auto;
  padding-top:20px;
}

.tab-section {
  display: none;
  padding: 20px 0 0;
  border-top: 1px solid #ddd;
  margin-bottom:60px;
}

.tab-input {
  display: none;
}

.tab-label {
  display: inline-block;
  margin: 0 0 -1px;
  padding: 15px 25px;
  font-weight: 600;
  text-align: center;
  color: #333333;
  border: 1px solid transparent;
}


.tab-label:hover {
  color: #00810d;
  cursor: pointer;
}

input:checked + label {
  color: #333333;
  border: 1px solid #ddd;
  border-top: 3px solid #00810d;
  border-bottom: 1px solid #fff;
}

#tab1:checked ~ #content1,
#tab2:checked ~ #content2,
#tab3:checked ~ #content3,
#tab4:checked ~ #content4,
#tab5:checked ~ #content5,
#tab6:checked ~ #content6,
#tab7:checked ~ #content7,
#tab8:checked ~ #content8,
#tab9:checked ~ #content9{
  display: block;
}


@media screen and (max-width: 400px) {
  .tab-label {
    padding: 15px;
	    width: 100%;
  }
}
/*End*/