




#carousel{
	margin-top:200px;
	text-align:center;
	height:60px;

	/* Initially hidden */

	
	/* Will animate the transition */
	-moz-transition:0.4s opacity;
	-webkit-transition:0.4s opacity;
	transition:0.4s opacity;
}

#carousel.active{
	opacity:1;
}

#carousel li{
	display:none;
	list-style:none;
	width:110px;
	height:151px;
	margin: -42px 18px 0;
	position:relative;
	
	-moz-transition:0.4s all;
	-webkit-transition:0.4s all;
	transition:0.4s all;
}

#carousel li.visible{
	display:inline-block;
}

#carousel li a img{
	border:none;
}

#carousel li img{
	display:block;
	width:auto;
	height:auto;
	max-width:100%;
	max-height:100%;
	position:relative;
	z-index:10;
}

/* Creating the cradle below the thumbnails.
	Uses % so that it grows with the image. */
	
#carousel li:after{
	content:'';
	background:url('assets/img/cradle.png') no-repeat top center;
	background-size:contain;
	bottom: 4%;
    content: "";
    height: 50px;
    left: -6.5%;
    position: absolute;
    right: -6.5%;
    width: auto;
    z-index: 1;
}

#carousel li:hover{
	height: 197px;
    margin-top: -152px;
    width: 222px;
}

.arrow{
	background:url('assets/img/arrows.png') no-repeat;
	width:28px;
	height:28px;
	opacity:0.8;
	text-indent:-999px;
	overflow:hidden;
	cursor:pointer;
	display:none;
	
	position:absolute;
	top:50%;
	left:50%;
	margin-left:-428px;
	margin-top:25px;
}

.arrow:hover{
	opacity:1;
}

.arrow.next{
	margin-left:400px;
	background-position:top right;
}


 
      