section .tabsection {
  display: none;
  padding: 30px;
  background-color: #F7F7F7;
  border: 1px solid #CCC;
  margin-bottom: 30px;
}
.tabs {
	margin-top: 30px;
}

.tabs > input {
  display: none;
}

.tabs > label {
	display: inline-block;
	margin: 0 0 -1px;
	padding: 15px 30px;
	text-align: center;
	border: 1px solid #CCC;
	background-color: #FFF;
	font-size: 16px;
	color: #034b8b;
}

.tabs label:hover {
  color: #111;
  cursor: pointer;
}

.tabs input:checked + label {
	color: #034b8b;
	border-top: 2px solid #f6303e;
	background-color: #F7F7F7;
	font-weight: bold;
	border-bottom: 1px solid transparent;
}

#tab1:checked ~ #content1,
#tab2:checked ~ #content2,
#tab3:checked ~ #content3,
#tab4:checked ~ #content4,
#tab5:checked ~ #content5,
#tab6:checked ~ #content6,
#tab7:checked ~ #content7,
#tab8:checked ~ #content8 {
  display: block;
}
#content1 img {
	display: inline;
}
