.upNext {
	display: block;
    overflow: hidden;
    height: 20rem;
}

.nextFade {
	position: absolute;
    display: block;
    height: 5vh;
    width: 100%;
    bottom: 0;
    z-index: 300;
	background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
	-webkit-transition: opacity ease-out .5s;
	-moz-transition: opacity ease-out .5s;
	-o-transition: opacity ease-out .5s;
	transition: opacity ease-out .5s;
	opacity:1;
}