.ff-container {
	width: 100%;
	margin: 10px auto 30px auto;
text-align: center;
}

.ff-container label{
	font-family: Calibri;
	width: 25%;
	height: 30px;
	cursor: pointer;
	color: #333;
	line-height: 33px;
	font-size: 15px;
	text-transform: uppercase;
	background: #b6b6b6;
	float:left;
}

.ff-container input.ff-selector-type-all:checked ~ label.ff-label-type-all,
.ff-container input.ff-selector-type-1:checked ~ label.ff-label-type-1,
.ff-container input.ff-selector-type-2:checked ~ label.ff-label-type-2,
.ff-container input.ff-selector-type-3:checked ~ label.ff-label-type-3{
	background: #808080;
	color: #696969;
}

.ff-container input{
	display: none;
}

.ff-items{
	position: relative;
	margin: 0px auto;
    margin-left: 40px;
list-style-type: none;
}

.ff-items a{
	display: block;
    position: relative;
    padding: 10px;
    background: #b6b6b6;
    margin: 4px;
    width: 160px;
    height: 120px;
}

.ff-items a span{
    display: block;
    background: #696969;
    color: #fff;
    font-size: 11px;
    font-family: Calibri;
    text-transform: uppercase;
    padding: 20px;
    padding-bottom: px;
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 120px;
    height: 0px;
    overflow: hidden;
    opacity: 0.8;
    text-align: center;
}

/*.ff-items a:hover span{
	height: 80px;
	opacity: 1;
}

*/
.ff-items li img{
	display: block;
}

.ff-items li{
	margin: 0px;
	float: left;
	width: 188px;
	height: 148px;
	-webkit-transition: opacity 0.6s ease-in-out;
	-moz-transition: opacity 0.6s ease-in-out;
	-o-transition: opacity 0.6s ease-in-out;
	-ms-transition: opacity 0.6s ease-in-out;
	transition: opacity 0.6s ease-in-out;
}

.ff-container input.ff-selector-type-all:checked ~ .ff-items li,
.ff-container input.ff-selector-type-1:checked ~ .ff-items .ff-item-type-1,
.ff-container input.ff-selector-type-2:checked ~ .ff-items .ff-item-type-2,
.ff-container input.ff-selector-type-3:checked ~ .ff-items .ff-item-type-3{
	opacity: 1;
}

.ff-container input.ff-selector-type-1:checked ~ .ff-items li:not(.ff-item-type-1),
.ff-container input.ff-selector-type-2:checked ~ .ff-items li:not(.ff-item-type-2),
.ff-container input.ff-selector-type-3:checked ~ .ff-items li:not(.ff-item-type-3){
	opacity: 0.1;
}

.ff-container input.ff-selector-type-1:checked ~ .ff-items li:not(.ff-item-type-1) span,
.ff-container input.ff-selector-type-2:checked ~ .ff-items li:not(.ff-item-type-2) span,
.ff-container input.ff-selector-type-3:checked ~ .ff-items li:not(.ff-item-type-3) span{
	display:none;
}

