/* Custom Stylesheet */
/*body, html {
    height: 100%;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    font-weight: 100;
    background: #aadfeb;
    text-align: center;
    font-family: helvetica;
}
*/
/* Tabs Demo 1 */
.tabs input[type=radio] {
    position: absolute;
    top: 0;
    left: -9999px;
}
.tabs {
  /*width: 650px;*/
  float: none;
  list-style: none;
  position: relative;
  padding: 0;
 /* margin: 75px auto;*/
 width:950px;
}
.tabs li{
  float: left;
}
.tabs label {
    display: block;
    padding: 10px 20px;
    border-radius: 2px 2px 0 0;
    color: #fff;
    font-size: 16px;
    font-weight: normal;
    font-family: 'Roboto', helveti;
    background:#c52121;
    cursor: pointer;
    position: relative;
    top: 3px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.tabs label:hover {
  background: #c52121;
  top: 0;
}

[id^=tab]:checked + label {
  background: #fff;
  color: #c52121;
  font-size:16px;
  font-weight:normal;
  /*top: 0;*/
}

[id^=tab]:checked ~ [id^=tab-content] {
    display: block;
}
.tab-content{
	border-top:2px #c92e2e solid;
	top:39px;
  z-index: 2;
  display: none;
  text-align: left;
  width: 100%;
  font-size: 16px;
  line-height: 19px;
  padding-top: 10px;
  background: none;
  padding: 15px;
  color: #595959;
  position: absolute;
  left: 0;
  box-sizing: border-box;
  -webkit-animation-duration: 0.5s;
  -o-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  animation-duration: 0.5s;
}