/* Circular Content Carousel Style */
.ca-container{
	position:relative;
	margin:0 auto;
	width:980px;
	height:163px;
}
.ca-wrapper{
	width:100%;
	height:100%;
	position:relative;
}
.ca-item{
	position:relative;
	float:left;
	width:254px;
	text-align:center;
}
.ca-item-main{
	padding:20px;
	position:absolute;
	top:5px;
	left:5px;
	right:5px;
	bottom:5px;
	background:#fff;
	overflow:hidden;
	-moz-box-shadow:1px 1px 2px rgba(0,0,0,0.2);
	-webkit-box-shadow:1px 1px 2px rgba(0,0,0,0.2);
	box-shadow:1px 1px 2px rgba(0,0,0,0.2);
}
.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-content{
	width:660px;
	overflow:hidden;
}
.ca-nav { }
.ca-nav span{
	width:40px;
	height:39px;
	position:absolute;
	top:50%;
	margin-top:-19px;
	text-indent:-9000px;
	cursor:pointer;
	z-index:100;
}
.ca-nav span.ca-nav-next{
	background: url(../images/slider-arrow-right.png) no-repeat top;
	right: 6px;
}
.ca-nav span.ca-nav-prev{
	background: url(../images/slider-arrow-left.png) no-repeat top;
	left: 0px;
}
.ca-nav span:hover{
	background-position: 0 -39px;
}