* {
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;
}
.row::after {
  content: "";
  clear: both;
  display: table;
}

body, html{
  background-color: #dadada;/*#d8d8d8;*/
  margin: 0;
  padding: 0;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
}

a{
  text-decoration: none;
  color: #26d;
}

a:hover{
  color: #59e;
}

#wrap{
  background-color: #fff;
  width: 1000px;
  margin: 2em auto;
  padding: 32px;
}

#head{
  text-align: center;
  font-weight: bold;
  padding: 1em;
  clear: both;
}

#head h1{
  font-size: 2em;
}

#head h2{
  font-size: 1.2em;
}


.tabs{
  margin-top: 1em;
}

.tabs::after, .namecard::after{ /*pack all floating elements in .tabs*/
  display: block;
  content: "";
  clear: both;
}

.tabs > [type=radio] {
  display: none; /*hide radio button*/
}

.tabs > [type=radio] + label{ /*unselected tab style*/
  background-color:#dd8;
  padding: 0.5em;
  /*margin-right: 0.5em;*/
  font-weight: bold;
  background-color: #ccc;/*#A11;*/
  text-transform: uppercase;
}

.tabs > [type=radio]:not(:checked) + label:hover{
  background-color: #444;/*#E22;*/
  color: white;
  cursor: pointer;
}

.tabs > [type=radio]:checked + label{ /*selected tab*/
  background-color: #900;/*#394;/*#235;*/
  color: white;
}

.tabs > [type=radio]:not(:checked) + label + .content{
  display: none; /*hide what is not selected*/
}

.content{ /*placing the content*/
  float: left; 
  margin-top: 1.5em; 
  width: 2%; /*width trick*/
  
}

.content > div{  /*actual content*/
  width: 5000%; /*width trick*/
  padding: 1em;
  /*background-color:#fa0;*/
  border-color: #ccc;
  border-style: solid;
  border-width: 0.2em 0; 
  line-height: 1.4em;
    min-height: 50vh;
}

.content h1{
  font-size: 1.5em;
}

.content h2{
  font-size: 1.2em;
}


.content p{
  text-align: justify;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.newscol p{
  text-align: left;
}

.namecard{
  min-height: 7em;
  padding: 0.5em 0;
}

.namecard + .namecard{
  border-top: 0.2em dotted #ccc;
}

.namecard div{
  float: left;
  margin-right: 1em;
  /*background-color: #f00;*/
  height: 5em;
  width: 5em;
  text-align: center;
}

.namecard img{
  max-height: 100%;
  max-width: 100%;
}

.namecard h2{
  margin: 0;
  margin-bottom: -0.5em;
}

.redtxt{
  color: #900;
}
