/* Circular Content Carousel Style */
.ca-container{
	position:relative;
	margin: 0; padding: 20px 60px 20px 20px;
	background-color: rgba(0,0,0,0.4);
	width: 100%;
	height:100px;
}
.ca-wrapper{
	width:100%;
	height:100%;
	position:relative;
}
.ca-item {
	position:relative;
	float:left;
	width:80px;
	height:100%;
	text-align:center;
}
.ca-item img { width: 60px; display: block;}
.ca-nav span{
	width: 30px;
	height: 30px;
	position:absolute;
	right: 10px;
	margin-top:-15px;
	left:-40px;
	text-indent:-9000px;
	opacity:0.7;
	cursor:pointer;
	z-index:100;
}
.ca-nav span.ca-nav-prev{
	background: rgba(0,0,0,0.8) url(../images/icon-arrow-up.png) no-repeat center center;
	left:auto;
	bottom: 50px;
}
.ca-nav span.ca-nav-next{
	background: rgba(0,0,0,0.8) url(../images/icon-arrow-down.png) no-repeat center center;
	left:auto;
	bottom: 20px;
}
.ca-nav span:hover{
	opacity:1.0;
}