/* CSS Document */

/*@import url(http://fonts.googleapis.com/css?family=Open+Sans);*/

/*body {
  background: #009688;
  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:22px;
	line-height:40px;
	color: #333;
	}
 */
.tabs {
    width: 1100px;
    float: none;
    list-style: none;
    padding: 0;
    
}
 
.tabs li {
	display: block;
}

.labels:after {
	content: '';
	display: table;
	clear: both;
	background: red;
}

.tabs label {
	/*display: inline-block;*/
	float: left;
    /*padding: 10px 20px;*/
    color: #343434;
    font-size: 14px;
	font-family: open sans;
    font-weight: normal;
    background: #efefef;
	
    cursor: pointer;
	height:30px;
	text-align:center;
	padding-top:12px;
	padding-left:0px;
	padding-right:0px;
	width:180px;
}
 
.tabs label:hover {
    background: #f5f5f5;
	color:red;
}
 
.tabs label:checked {
    background: yellow;
}

.tab-content {
    display: none;
    width: 100%;
    padding: 0px;

    border:0px solid #ccc;
    border-top: 0px solid #787878;
    background-color:#ffffff;
}


.tabs input[type=radio] {
    display:none;
}
 
[id^=tab]:checked ~ div[id^=tab-content] {
    display: block;

}

[id^=tab]:checked ~ [id^=label]  {
    background: red;
    color: white;
}
.tabs [id^="tab"]:checked + label {
    background: blue;
    box-shadow: inset 0 4px #3498db;
    border-bottom: 4px solid #3498db;
    color: #3498db;
	background: red;
}
#tab1:checked ~ #tab-content1,
#tab2:checked ~ #tab-content2,
#tab3:checked ~ #tab-content3 {
    display: block;
}

/*

#relatedContent {
	display: block;
	clear: both;
  	max-width: 800px;
  	margin: 100px auto 0;
}

#relatedContent h3 {
  font-size: 30px;
  text-align: center;
  color: #FFF;
}

#relatedContent .item {
  	max-width: 44%;
  	padding: 3%;
  	float: left;
  	text-align: center;
}

#relatedContent .item a img {
 	max-width: 100%;
}
*/