	      .tabs input[type=radio] {
	          position: absolute;
	          top: -9999px;
	          left: -9999px;
	      }
	      .tabs {
	        width: 310px;
	        min-height:55px;
	        float: none;
	        list-style: none;
	        position: relative;
	        padding: 0;
	        margin: 0;
	      }
	      .tabs ul{
	        margin: 0;
	      }
	      .tabs li{
	        float: left;
	        width: 155px;
	      }
	      .tabs label {
	          display: block;
	          padding: 15px 3px 5px 3px;
	          border-right: 1px solid #e8e8e8;
	          color: #fff;
		  text-align: center;
	          font-size: 14px;
	          font-weight: bold;
	          background: rgba(22,95,135,1.0);
	          cursor: pointer;
	          position: relative;
	          top: 0;
	          -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: rgba(22,95,135,1.0);
	        top: 0;
	      }
	      
	      [id^=tab]:checked + label {
	        background: #fff;
	        color: #fb4f00;
	        top: 0;
	      }
	      
	      [id^=tab]:checked ~ [id^=tab-content] {
	          display: block;
	      }
