/* CSS reset */
table {
	border-collapse:collapse;
	border-spacing:0;
}
fieldset,img { border:0; }
address,caption,cite,code,dfn,th,var {
	font-style:normal;
	font-weight:normal;
}
ol,ul { list-style:none; }
caption,th { text-align:left; }
q:before,q:after { content:''; }
abbr,acronym { border:0; }
/* General Demo Style */

a.item-titulo{
	color: #fff;
	text-decoration: none;
}

.clr { clear: both; }

.ff-container{
	margin: 4em 0 50em;
	width: 100%;
}
.ff-container label{
	background: #e9e9e9;
	color: #295091;
	cursor: pointer;
	float:left;
	font-size: 1.8em;
	font-weight: 500;
	height: 3em;
	line-height: 3em;
	margin: 0 1.5em 0 0;
	text-align: center;
	width: 14.2%;
}

.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,
.ff-container input.ff-selector-type-4:checked ~ label.ff-label-type-4,
.ff-container input.ff-selector-type-5:checked ~ label.ff-label-type-5,
.ff-container input.ff-selector-type-6:checked ~ label.ff-label-type-6{
	background: #ff8000;
	color: #fff;
}
.ff-container input{
	display: none;
}
.ff-items{
	margin: 0 auto;
	padding: 3em 0 0;
	position: relative;
}
.ff-items a{
	background: #295091;
	display: block;
	height: 8em;
	margin: 0;
	padding: 10px;
	position: relative;
	text-decoration: none;
	width: 95%;
}
.ff-items a span{
	background-color: #ff8000;
	bottom: .255em;
	color: #fff;
	display: block;
	font-size: 1.2em;
	font-weight: normal;
	min-height: 134px;
	left: .25em;
	line-height: 1.2em;
	opacity: 0;
	overflow: hidden;
	padding: 2.555em 0 0;
	position: absolute;
	text-align: center;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	width: 93.5%;
}
.ff-items a:hover span{
	height: 80px;
	opacity: 1;
}
.ff-items li img{ display: block; }

.ff-items li{
	float: left;
	font-size: 1.8em;
	height: 10em;
	list-style: none!important;
	margin: 0;
	-webkit-transform: scale(0,0);
	-moz-transform: scale(0,0);
	-o-transform: scale(0,0);
	-ms-transform: scale(0,0);
	transform: scale(0,0);
	width: 0;
}
.ff-container input.ff-selector-type-all:checked ~ .ff-items li{
	-webkit-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-o-transform: scale(1,1);
	-ms-transform: scale(1,1);
	transform: scale(1,1);
	-webkit-transition: -webkit-transform 0.3s linear;
	-o-transition: -o-transform 0.3s linear;
	-ms-transition: -ms-transform 0.3s linear;
	transition: transform 0.3s linear;
	width: 15%;
}
.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,
.ff-container input.ff-selector-type-4:checked ~ .ff-items .ff-item-type-4,
.ff-container input.ff-selector-type-5:checked ~ .ff-items .ff-item-type-5,
.ff-container input.ff-selector-type-6:checked ~ .ff-items .ff-item-type-6
{
	-webkit-animation: scaleUp 0.3s linear 0.4s forwards;
	-moz-animation: scaleUp 0.3s linear 0.4s forwards;
	-o-animation: scaleUp 0.3s linear 0.4s forwards;
	-ms-animation: scaleUp 0.3s linear 0.4s forwards;
	animation: scaleUp 0.3s linear 0.4s forwards;
	-webkit-transition: -webkit-transform 0.3s linear, width 0s linear 0.3s;
	-moz-transition: -moz-transform 0.3s linear, width 0s linear 0.3s;
	-o-transition: -o-transform 0.3s linear, width 0s linear 0.3s;
	-ms-transition: -ms-transform 0.3s linear, width 0s linear 0.3s;
	transition: transform 0.3s linear, width 0s linear 0.3s;
}
.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),
.ff-container input.ff-selector-type-4:checked ~ .ff-items li:not(.ff-item-type-4),
.ff-container input.ff-selector-type-5:checked ~ .ff-items li:not(.ff-item-type-5),
.ff-container input.ff-selector-type-6:checked ~ .ff-items li:not(.ff-item-type-6)
{
	-webkit-animation: scaleDown 0.3s linear forwards;
	-moz-animation: scaleDown 0.3s linear forwards;
	-o-animation: scaleDown 0.3s linear forwards;
	-ms-animation: scaleDown 0.3s linear forwards;
	animation: scaleDown 0.3s linear forwards;
}
@-webkit-keyframes scaleUp {
	50% { width: 188px; -webkit-transform: scale(0,0); transform: scale(0,0); }
    100% { width: 188px; -webkit-transform: scale(1,1); transform: scale(1,1); }
}
@-webkit-keyframes scaleDown {
	0% { width: 188px;-webkit-transform: scale(1,1); transform: scale(1,1);}
	99% { width: 188px; -webkit-transform: scale(0,0); transform: scale(0,0);}
    100% { width: 0px; -webkit-transform: scale(0,0); transform: scale(0,0); }
}
@-moz-keyframes scaleUp {
	50% { width: 188px; -moz-transform: scale(0,0); transform: scale(0,0); }
    100% { width: 188px; -moz-transform: scale(1,1); transform: scale(1,1); }
}
@-moz-keyframes scaleDown {
	0% { width: 188px;-moz-transform: scale(1,1); transform: scale(1,1);}
	99% { width: 188px; -moz-transform: scale(0,0); transform: scale(0,0);}
    100% { width: 0px; -moz-transform: scale(0,0); transform: scale(0,0); }
}
@-o-keyframes scaleUp {
	50% { width: 188px; -o-transform: scale(0,0); transform: scale(0,0); }
    100% { width: 188px; -o-transform: scale(1,1); transform: scale(1,1); }
}
@-o-keyframes scaleDown {
	0% { width: 188px;-o-transform: scale(1,1); transform: scale(1,1);}
	99% { width: 188px; -o-transform: scale(0,0); transform: scale(0,0);}
    100% { width: 0px; -o-transform: scale(0,0); transform: scale(0,0); }
}
@-ms-keyframes scaleUp {
	50% { width: 188px; -ms-transform: scale(0,0); transform: scale(0,0); }
    100% { width: 188px; -ms-transform: scale(1,1); transform: scale(1,1); }
}
@-ms-keyframes scaleDown {
	0% { width: 188px;-ms-transform: scale(1,1); transform: scale(1,1);}
	99% { width: 188px; -ms-transform: scale(0,0); transform: scale(0,0);}
    100% { width: 0px; -ms-transform: scale(0,0); transform: scale(0,0); }
}
@keyframes scaleUp {
	50% { width: 188px; transform: scale(0,0); }
    100% { width: 188px; transform: scale(1,1); }
}
@keyframes scaleDown {
	0% { width: 188px; transform: scale(1,1);}
	99% { width: 188px; transform: scale(0,0);}
    100% { width: 0px; transform: scale(0,0); }
}