.cycle-overlay.asOverlay{
	position: absolute;
	bottom: 0;
	width: 100%;
	z-index: 600;
	background: black;
	color: white;
	padding: 15px;
	opacity: .5;
}

.cycle-slideshow, .cycle-slideshow * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.cycle-slideshow, .cycle-slideshow img{
	max-width: 100%;
	height: auto !important;
}

.cycle-prev, .cycle-next {
	position: absolute;
	top: 50%;
	width: 44px;
	height: 44px;
	margin-top: -22px;
	z-index: 800;
	cursor: pointer;
}
.cycle-prev {
	left: 0;
	background: url(prev.jpg) 0% 50% no-repeat;
}
.cycle-next {
	right: 0;
	background: url(next.jpg) 100% 50% no-repeat;
}

.cycle-overlay div:first-child{
	float: left;
}
.cycle-overlay div:last-child{
	float: right;
}
.cycle-overlay.stack div{
	float: none;
}

@media (max-width: 480px){
	.cycle-prev, .cycle-next{
		display: none;
	}
}