.tabs input[type=radio] {
          position: absolute;
          top: -9999px;
          left: -9999px;
      }
      .tabs {
        width: 545px;
        float: none;
        list-style: none;
        position: relative;
        padding: 0;
        margin: 5px 0px;
      }
      .tabs li{
        float: left;
      }
      .tabs label {
          display: block;
          padding: 3px 10px;
          border:2px solid #AFC8E0;
          color: #000;
          font-size: 10px;
          font-weight: normal;
          background: #AFC8E0;
          cursor: pointer;
          position: relative;
          -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: #DAE6FF;
      }
       
      [id^=tab]:checked + label {
        background: #F2F5F5;
      }
       
      .tab-content1{
        z-index: 2;
        display: block;
        text-align: left;
        width: 100%;
		height: 80px;
        padding-top: 0px;
        background: #F2F5F5;
        padding: 15px;
        color: white;
        position: absolute;
        top: 19px;
        left: 0;
		border:2px solid #AFC8E0;
		
      }
	  
	  .tab-content2{
        z-index: 2;
        display: none;
        text-align: left;
        width: 100%;
		height: 80px;
        padding-top: 0px;
        background: #F2F5F5;
        padding: 15px;
        color: white;
        position: absolute;
        top: 19px;
        left: 0;
		border:2px solid #AFC8E0;
		
      }