
/* Adds a solid bacground to hover click in gallery list pages */

.team .member .member-cont .member-img.gallery {
    border-width: 3px;
    border-style: solid;
}

/*
.team .member h5 {
    position: absolute;
    top: 48%;
    left: 50%;
    letter-spacing: 6px;
    opacity: 0;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-transition: all 0.3s 0.15s ease;
    -moz-transition: all 0.3s 0.15s ease;
    -ms-transition: all 0.3s 0.15s ease;
    -o-transition: all 0.3s 0.15s ease;
    transition: all 0.3s 0.15s ease;
}
.team .member:hover h5 {
    opacity: 1;
    top: 50%;
}
*/
.team .member h5 {

    width: 75%;
    letter-spacing: 3px;
    text-align: center;
    border-radius: 1em;
    top: 53%; /* Makes for a nicer hover bar */
    opacity: 0%;
    -moz-opacity: 0; /* Firefox and Mozilla browsers */
    -webkit-opacity: 0; /* WebKit browser e.g. Safari */
    filter: alpha(opacity=0); /* For IE8 and earlier */
}

.team .member:hover h5 {
    background-color: #aaaaaa;
    top: 50%;
    opacity: 70%;
    -moz-opacity: 0.7; /* Firefox and Mozilla browsers */
    -webkit-opacity: 0.7; /* WebKit browser e.g. Safari */
    filter: alpha(opacity=70); /* For IE8 and earlier */
}

