@charset "utf-8";
/* CSS Document */

       
      .tabs input[type=radio] {
          position: absolute;
          top: -9999px;
          left: -9999px;
		  
      }
      .tabs {
        width: 650px;
        float: none;
        list-style: none;
        position: relative;
        padding: 0;
        margin: 15px auto;
		
      }
      .tabs li{
        float: left;
      }
      .tabs label {
          display: block;
          padding: 10px 20px;
          border-radius: 2px 2px 0 0;
		  border-color:#333;
		  border-style:solid;
		  border-width:thin;
		  
          color: #209949;
          font-size: 14px;
          font-weight: normal;
          font-family:Verdana, Geneva, sans-serif;
          background: #D8D8D8;
		  
          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: #CCC;
		font-size: 14px;
        font-weight: normal;
        font-family:Verdana, Geneva, sans-serif;
        top: 0;
      }
       
      [id^=tab]:checked + label {
        background: #C7DECA;
        color: #209949;
        top: 0;
      }
       
      [id^=tab]:checked ~ [id^=tab-content] {
          display: block;
      }
      .tab-content{
		  color:#000;
		  
		
        z-index: 2;
        display: none;
        text-align: left;
        width: 100%;
		height: 100px;
        font-size: 20px;
        line-height: 100%;
        padding-top: 0px;
		font-size: 14px;
        font-weight: normal;
        font-family:Verdana, Geneva, sans-serif;
        background: #C7DECA;
		border-color:#333;
		border-style:solid;
	    border-width:thin;
        padding: 15px;
        color: black;
        position: absolute;
        top: 35px;
        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;
      }

