﻿.tabs input[type=radio] {
          position: absolute;
          top: -9999px;
          left: -9999px;
		  background-color: #3b4c5b;
      }
      .tabs {
        width: 840px;
		height:995px;
        float: none;
        list-style: none;
        position: relative;
        padding: 0px;
        margin: 15px auto;
		padding-left:50px;
		background-color: #cccccc;
		border: 1px solid #cccccc;
		
      }
      .tabs li{
        float: left;
		margin-top:5px;
		
      }
      .tabs label {
          display: block;
	
          padding: 10px 20px; 
		  border:1px solid #ffffff;
          border-radius: 4px 4px 0 0;
          color: #ffffff;
          font-size: 20px;
          font-weight: normal;
          font-family: 'lato' sans serif;
          background: #9d152d;
          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: rgba(255,255,255,0.5);
		color:#333;
        top: 0;
      }
       
      [id^=tab]:checked + label {
        background: #ffffff;
        color: #3b4c5b;
        top: 0;
      }
       
      [id^=tab]:checked ~ [id^=tab-content] {
          display: block;
      }
      .tab-content{
        z-index: 2;
        display: none;
        text-align: left;
        width: 100%;
		height:940px;
        font-size: 20px;
        line-height: 140%;
        padding-top: 10px;
        background: #ffffff;
        padding: 15px;
        color:#333;
        position: absolute;
        top: 53px;
        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;
      }