/* Circular Content Carousel Style */
.ca-container{
	position:relative;
	margin:0 auto;
	width:900px;
	height:175px;
}
.ca-wrapper{
	width:100%;
	height:100%;
	position:relative;
}
.ca-item{
	position:relative;
	float:left;
	width:221px;
	height:100%;
}

.ca-content-wrapper{
	background:#b0ccc6;
	position:absolute;
	width:0px; /* expands to width of the wrapper minus 1 element */
	height:440px;
	top:5px;
	text-align:left;
	z-index:10000;
	overflow:hidden;
}
.ca-nav span{
	background:#869791;
	border-radius:10px;
	color:#fff;
	display:inline-block;
	font-size:16px;
	padding:10px;
	position:absolute;
	opacity:0.5;
	cursor:pointer;
	z-index:100;
}
.ca-nav span.ca-nav-next{
	left:auto;
	right:-40px;
	top:25px;
}
.ca-nav span.ca-nav-prev {
	right:auto;
	left:-35px;
	top:25px;}
.ca-nav span:hover{
	opacity:1.0;
}