@charset "utf-8";
/* CSS Document */
.team-flip-y {
    padding: 0;
    margin: 0
    }

.team-flip-y .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-y .team-post a {
    text-decoration: none
    }

.team-flip-y .team-post a.read-more {
    font-weight: bold
    }

.team-flip-y .team-thumb {
    height: 150px;
    overflow: hidden
    }

.team-flip-y .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-y .team-title {
    color: rgb(102, 102, 102);
    font-size: 14px;
    font-weight: bold;
    padding: 10px
    }

.team-flip-y .team-position {
    color: rgb(102, 102, 102);
    font-size: 12px;
    line-height: 18px;
    padding: 0 10px 10px
    }

.team-flip-y .team-content {
    color: rgb(102, 102, 102);
    font-size: 12px;
    overflow: hidden;
    padding: 0 10px;
    text-align: left
    }

/*flip css*/
.team-flip-y .team-item {
    perspective: 1000
    }

.team-flip-y .team-item:hover .team-post, .team-item.hover .team-post {
    -moz-transform: rotatex(180deg);
    -ms-transform: rotatex(180deg);
    -o-transform: rotatex(180deg);
    -webkit-transform: rotatex(180deg);
    transform: rotatex(180deg)
    }

.team-flip-y .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-y .front, .team-flip-y .back {
    backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility:    hidden;
  -ms-backface-visibility:     hidden;
    bottom: 0;
    left: 0
    }

.team-flip-y .front {
    left: 0;
    position: absolute;
    top: 0;
    -moz-transform: rotatex(0deg);
    -ms-transform: rotatex(0deg);
    -o-transform: rotatex(0deg);
    -webkit-transform: rotatex(0deg);
    transform: rotatex(0deg);
    z-index: 10
    }

.team-flip-y .back {
    z-index: 9;
    left: 0;
    position: absolute;
    top: 0;
    -moz-transform: rotatex(-180deg);
    -ms-transform: rotatex(-180deg);
    -o-transform: rotatex(-180deg);
    -webkit-transform: rotatex(-180deg);
    transform: rotatex(-180deg)
    }