/*
 * Color, Border, and Button Rules
 */
.contentslider {
   background: #1b563a;/* This is the color of said border */
} 
.cs_wrapper, .cs_article {
	background: #1b563a; /* Background color for the entries */
}
.cs_leftBtn, .cs_rightBtn {

  width: 55px; /* Should be as wide as the button graphic being used */
  background: #1b563a; /* This will probably match the contentslider bg color */
}


.contentslider {
	position:relative;
	display:block;
	width:570px;
	height:250px;
	overflow:hidden;
}
.cs_wrapper {
  position:relative;
  display:block;
  width:100%;
  height:100%;
  margin:0;
  padding:0;
  overflow:hidden;
}
.cs_slider {
  position:absolute;
  width:10000px;
  height:100%;
  margin:0;
  padding:0;
}
.cs_article {
	float:left;
	top:0;
	left:0;
	display:block;
	width: 590px;
	height: 250px;
	margin:0 auto;
}

.cs_article img {
	float: left;
	margin-left: 54px;
	width: 544px;
	height: 214px;
	border: 1px solid #fff;
}

.cs_leftBtn, .cs_rightBtn {
  position:absolute;
  top: 0px;
  height: 214px;
  padding:0;
  z-index:10000;
}
.cs_leftBtn {
  left:0;
  outline:0;
}
.cs_rightBtn {
  right:0;
  outline:0;
}
.cs_leftBtn img, .cs_rightBtn img {
  border:0;
  position:relative;
  top: 0px;
  margin:0;
}

