/* pager */
.slider_container {
	position: relative;
	width: 100%;
}
.cycle-slideshow,
.cycle-slideshow > li
{
	width: 100%;
}
.cycle-slideshow > li {
	display: none;
}
.cycle-slideshow > li:first-child {
	display: block;
}
.cycle-pager { 
	position: absolute;
	z-index: 500;
	top: 10px;
	right: 10px;
	overflow: hidden;
}
.cycle-pager span { 
    display: inline-block;
	height: 10px; 
	width: 10px;
	margin: 0 0 0 3px;
    font-family: arial;
	font-size: 50px;
	line-height: 16px;
	color: #fff;
	cursor: pointer; 
	/*border: 1px solid #3a9140;*/
	background: #062c77;
	border-radius: 10px;
}
.cycle-pager span.cycle-pager-active { background: #da320b;}
.cycle-pager > * { cursor: pointer;}

.prev, .next {
	position: absolute;
	z-index: 9999;
	cursor: pointer;
	/*top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);*/
	bottom: -30px;
}
.prev {
	left: 10px;
}
.next {
	right: 10px;
}

@media only screen and (max-width: 1000px){
	.prev, .next {
		bottom: 50%;
		transform: translateY(50%);
		-webkit-transform: translateY(50%);
		-moz-transform: translateY(50%);
		-o-transform: translateY(50%);
		-ms-transform: translateY(50%);
	}
	
}