/* Tabs Demo 1 */
.tabi input[type=radio] {
    position: relative;
    top: -9999px;
    left: -9999px;
}
.tabi {
  width: 100%;
  float: none;
  list-style: none;
  position: relative;
  padding: 0;
}
.tabi li{
  float: left;
}
.tabi label {
    display: block;
    padding: 0px 10px;
    color: rgb(0, 0, 50);
    font-size: 11px;
    font-weight: bold;
    font-family:Arial;
    background: rgb(221, 221, 221) none repeat scroll 0 0;
	border: 1px solid rgb(153, 153, 153);
    cursor: pointer;
    position: relative;
    top: 11px;
    -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;
	text-transform: uppercase;
	margin-right: 1px;
}
.tabi label:hover {
  background: rgba(255,255,255,0.5);
  top: 11px;
}

[id^=tabish]:checked + label {
  background:rgb(238, 238, 238);
  color: rgb(85, 85, 85);
  top: 11px;
}

[id^=tabish]:checked ~ [id^=tabish-content] {
    display: block;
}
.tabish-content{
  z-index: 2;
  display: none;
  text-align: left;
  width: 100%;
  font-size: 20px;
  line-height: 140%;
  padding-top: 10px;
  background: rgb(238, 238, 238) none repeat scroll 0 0;
  padding: 15px;
  color: white;
  position: absolute;
  border: 1px solid rgb(153, 153, 153);
  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;
}