/* ============================================== */
/* TABS */
/* ============================================== */

.tabs {
  overflow: hidden;
  float:left;
  width: 25%;
}

.tabs ul {
  list-style-type: none;
  width: 100%;
  font-size: 1em;
  font-weight: lighter;
  margin:0;
  padding:0;
}

.tabs ul li{

  line-height: 1.6em;
  box-sizing:border-box;
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  -o-box-sizing:border-box;
  display:block;
}
.tabs ul li,
.tabs ul li a{
  color:#444;
  border-bottom:1px dashed #ddd;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.tabs ul li a:hover{
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  color: black;
}


.tabs li.current a{
  color: black;
  padding-left:30px;
}

.tabs-content > div {
  padding: 20px;
  line-height: 19px;
  color: #666;
  text-shadow: 1px 1px 0 #fff;
  display: none;
}

.tabs-content img{
  padding:30px 0 40px 0;
}
.tabs-content h3{
  padding:0 0 20px 0;
}

.tabs-content .current { display: block; }
.tabs-content .home.first { display: block; }
.tabs-content p { margin: 0;}

.tabs, .tabs-content > div{
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  -o-box-sizing:border-box;
  box-sizing:border-box;
}

.tabs li a {
  display: block;
  padding: 15px;
  width: 100%;
  margin:0;
  color: #444;
  text-decoration: none;
  text-align: left;
  font-size: 1em;
}


.tabs-content > div {
  line-height: 19px;
  color: #666;
  text-shadow: 1px 1px 0 #fff;
  display: none;
  float:right;
  width:73%;
}


.fadeIn {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn;
  opacity: 0;
}
@-webkit-keyframes fadeIn {
  0% {opacity: 0;-webkit-transform: translateY(0);}
  100% {opacity: 1;-webkit-transform: translateY(0);}
}

@-moz-keyframes fadeIn {
  0% {opacity: 0;-moz-transform: translateY(0);}
  100% {opacity: 1;-moz-transform: translateY(0);}
}

@-o-keyframes fadeIn {
  0% {opacity: 0;-o-transform: translateY(0);}
  100% {opacity: 1;-o-transform: translateY(0);}
}

@keyframes fadeIn {
  0% {opacity: 0;transform: translateY(0);}
  100% {opacity: 1;transform: translateY(0);}
}
.animated {
  -webkit-animation-duration: 1s;
     -moz-animation-duration: 1s;
       -o-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
     -moz-animation-fill-mode: both;
       -o-animation-fill-mode: both;
          animation-fill-mode: both;
}

@media screen and (max-width:767px){
  .tabs{width: 100%;}
  .tabs-content > div {
    width:100%;
    padding: 0;
  }

}
