.tabs {
  /*width: 650px;*/
  float: none;
  list-style: none;
  position: relative;
  margin: 80px 0 0 20px;
  text-align: left;
}
.tabs li {
  float: left;
  display: block;
}

.tabs input[type="radio"] {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.tabs label {
  text-align:left;
  max-width:135px;
  min-height:35px;
  display: block;
  padding: 5px 6px;
  border: 1px solid #000;
  border-radius: 4px 4px 0 0;
  font-size: 15px;
  font-weight: normal;
  background: #999;
  cursor: pointer;
  position: relative;
  top: 4px;
  margin-left:-1px;  
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.tabs label:hover {
  background: #bbb;
}
.tabs .tab-content {
  border: 2px solid #333;
  border-radius: 5px;
  z-index: 2;
  display: none;
  overflow: hidden;
  width: 100%;
  font-size: 15px;
  line-height: 25px;
  padding: 25px;
  position: absolute;
  top: 55px;
  left: 0;
  background:  #f2f2f2;
  text-align:justify;
}

div.mobtab {
	display: none;
}

/* Toggle when clicked */

.tabs [id^="standtab"]:checked + label,
 .tabs [id^="mobtab"]:checked + label {
  top: 0;
  padding-top: 8px;
  background:  #f2f2f2;
  border: 2px solid #333;
  font-weight: bold;
}

.tabs [id^="mobtab"]:checked ~ [id^="tab-content"],
.tabs [id^="standtab"]:checked ~ [id^="tab-content"] { 
	display: block; 
}

/*
.tabs [id^="standtab"]:checked ~ [id^="tab-content"],
.tabs [id^="mobtab"]:checked ~ [id^="tab-content"] {
  display: block;
}
*/

.tabs label.read-more-label {
  position: relative;
  left:85%;
  margin-top:-10px;
  color: #000;
  min-height: 20px;

  text-align:center;
  cursor: pointer;
  display: inline-block;
  padding: 0 1em;

  font-size: .9em;
  line-height: 2;
  border: 1px solid #ddd;
  border-radius: .25em;
  
  font-size: 16px;
  font-weight: normal;
  background: #fff;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}


/***************/
/* Mobile site */

@media screen and (max-width: 425px) {
	div.standtab {
		display: none;
	}

	div.mobtab {
		display: block;
	}

	.tabs {
		margin-left:-10px;
	}	

	.tabs label {
		max-width:75px;
		font-size: 12px;
		padding: 5px 3px;
	}
	
	.tabs .tab-content {
		margin-top:-7px;
	}
}