/* CSS Document */

@import url(https://fonts.googleapis.com/css?family=Open+Sans);

body {
  font-size:18px;
  line-height: 32px;
  word-wrap:break-word !important;
  font-family: 'Open Sans', sans-serif;
  }


h1 {
  font-size: 60px;
  text-align: center;
  line-height: 1.5;
  color: #FFF;
} 

a {
  color: #FFF;
}

p {
	font-size:18px;
	line-height:40px;
	color: #333;
	}
 
.tabs {
    width: 100%;
    float: none;
    list-style: none;
    padding: 0;
    margin: 0px auto;
}
 
.tabs li {
	display: block;
}

.labels:after {
	content: '';
	display: table;
	clear: both;
}

.tabs label {
	display: inline-block;
	float: left;
  padding: 10px 20px;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: normal;
  background: #758e3e;
  cursor: pointer;
}

.tabs .labelOther {
  background: #4a5d1f;
}
 
.tabs label:hover {
  background: #08C;
}
 
.tab-content {
  display: none;
  width: 100%;
  padding: 15px;

  border:1px solid #ccc;
  border-top: 10px solid #08C;
  background-color:#ffffff;

  color: #000;

  text-align: left !important;
}


.tabs input[type=radio] {
    display:none;
}
 
[id^=tab]:checked ~ div[id^=tab-content] {
    display: block;
}

[id^=tab]:checked ~ [id^=label]  {
    background: #08C;
    color: white;
}