/* CSS Document */

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

@font-face {
  font-family: "dinproregular";
  src: url('../fonts/DINPro-Regular.otf');
}

html,
body {
  background-color: rgba(0,0,0,0.95);
  background-image: url("/img/backgrounds/01.jpg");
  font-size:14px;
  line-height: 32px;
  word-wrap:break-word !important;
  font-family:dinproregular;
  }


h1 {
  font-size: 40px;
  text-align: center;
  line-height: 1.5;
  color: white;
} 

a {
  color: white;
}

p {
	font-size:22px;
	line-height:40px;
	color: white;
	}
 
.tabs {
    width: 650px;
    float: none;
    list-style: none;
    padding: 0;
    margin: 75px auto;
}
 
.tabs li {
	display: block;
}

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

.tabs label {
    display: inline-block;
    float: left;
    padding: 8px 16.5px;
    color: white;
    font-size: 22px;
    font-weight: normal;
    background: rgba(0,0,0,0.95);
    cursor: pointer;
    border-radius: 10px 10px 10px 10px;
}
 
.tabs label:hover {
    background: #0E4C92;
}
 
.tab-content {
    display: none;
    width: 100%;
    padding: 15px;

    border:0px solid #ccc;
    border-top: 10px solid rgba(0,0,0,0.95);
    background-color:rgba(0,0,0,0.95);
}


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

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


#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%;
}



