@charset "utf-8";
/* CSS Document */
.team-flip-x {
    padding: 0;
    margin: 0
    }

.team-flip-x .team-item {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid;
  display: inline-block;
  margin: 20px 10px;
  overflow: hidden;
  padding: 0;
  vertical-align: top;
  width: 200px;
}

.team-flip-x .team-post a {
    text-decoration: none
    }

.team-flip-x .team-post a.read-more {
    font-weight: bold
    }

.team-flip-x .team-thumb {
    height: 150px;
    overflow: hidden
    }

.team-flip-x .team-thumb img {
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    height: auto;
    width: 100%
    }

.team-flip-x .team-title {
    color: rgb(102, 102, 102);
    font-size: 14px;
    font-weight: bold;
    padding: 10px
    }

.team-flip-x .team-position {
    color: rgb(102, 102, 102);
    font-size: 12px;
    line-height: 18px;
    padding: 0 10px 10px
    }

.team-flip-x .team-content {
    color: rgb(102, 102, 102);
    font-size: 12px;
    overflow: hidden;
    padding: 0 10px;
    text-align: left
    }

/*flip css*/
.team-flip-x .team-item {
    perspective: 1000;
    -webkit-perspective: 1000
    }

.team-flip-x .team-item:hover .team-post, .team-item.hover .team-post {
    -moz-transform: rotatey(180deg);
    -ms-transform: rotatey(180deg);
    -o-transform: rotatey(180deg);
    -webkit-transform: rotatey(180deg);
    transform: rotatey(180deg)
    }

.team-flip-x .team-post {
    height: 220px;
    -moz-transition: 0.6s;
    -o-transition: 0.6s;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    transform-style: preserve-3d;
    position: relative
    }

.team-flip-x .front, .team-flip-x .back {
    backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility:    hidden;
  -ms-backface-visibility:     hidden;
    -webkit-backface-visibility: hidden;
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    top: 0;
    left: 0
    }

.team-flip-x .front {
    left: 0;
    position: absolute;
    top: 0;
    -moz-transform: rotatey(0deg);
    -ms-transform: rotatey(0deg);
    -o-transform: rotatey(0deg);
    -webkit-transform: rotatey(0deg);
    transform: rotatey(0deg);
    z-index: 10
    }

.team-flip-x .back {
    z-index: 9;
    left: 0;
    position: absolute;
    top: 0;
    -moz-transform: rotatey(180deg);
    -ms-transform: rotatey(180deg);
    -o-transform: rotatey(180deg);
    -webkit-transform: rotatey(180deg);
    transform: rotatey(180deg)
    }