		  
		  .tabs input[type=radio] {
	          position: absolute;
	          top: -9999px;
	          left: -9999px;
	      }
	      .tabs {
	        width: 100%;
	        float: none;
	        list-style: none;
	        position: relative;
	        padding: 0; margin:10px 0 0 0;
			
	      }
	      .tabs li{
	        float: left;
			margin:0 6px 0 0;
			list-style-type: none;
	      }
	      .tabs label {
	          display: block;
	          padding: 5px 10px;
	          border-radius: 2px 2px 0 0;
	          color: #333;
	          font-size: 13.4px;
	          font-weight: normal;
	          background: #e4e4e1;
	          cursor: pointer;
	          position: relative;
	          top: 4px;
	          -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: #17608b;
			color: white;
	       top: 4px;
	      }
	      
	      [id^=tab]:checked + label {
	        background: #17608b;
	        color: white;
	        top: 4px;
	      }
	      
	      [id^=tab]:checked ~ [id^=tab-content] {
	          display: block;
	      }
	      .tab-content{
	        z-index: 2;
	        display: none;
	        text-align: left;
	        width: 90%;
	        font-size: 13px;
			border-top:4px solid #17608b;
	        background: #aee0fe;
	        padding: 15px;
	        color: #000;
			min-height:435px;
	        position: absolute;
	        top: 33px;
	        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;
	      }
		  .tab-content ul li {
			  float:none;
			  list-style-type: circle;
			  margin:0 0 0 10px;
			  padding:1px 0;
			  line-height:23px;	 	
		  }
		  