/* Animaciones */
.animar {
	visibility: hidden;
	opacity: 0;
}
.animar.animated, .animar.animated-fast, .animated-slow  {
	visibility: visible;
	opacity: 1;
}


.ver-mas {
	transition: all ease 1s;
	overflow: hidden;
	max-height: 10000px;
	
	position: relative;
}
.ver-mas.cerrado {
	position: relative;
	transition: all ease 1s;
	max-height: 0;
}
.ver-mas.abierto {
	max-height: 10000px!important;
	transition: all ease 1s;
	padding-bottom: 60px;
}
	.ver-mas > .more-link {
		position: absolute;
		bottom: 0;
		width: 100%;
		height: 60px;
		line-height: 75px;
		left: 0;
		background: rgba(255,255,255,0);
		background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 20%, rgba(255,255,255,1) 100%);
		background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,0)), color-stop(20%, rgba(255,255,255,1)), color-stop(100%, rgba(255,255,255,1)));
		background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 20%, rgba(255,255,255,1) 100%);
		background: -o-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 20%, rgba(255,255,255,1) 100%);
		background: -ms-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 20%, rgba(255,255,255,1) 100%);
		background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 20%, rgba(255,255,255,1) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0 );
	}
	.ver-mas.abierto > .more-link {
		display: none;
	}
