#main-slide {
/* 	max-width:1150px; */
	margin:auto;
	height:auto;
	margin-top:0;
}

#main-slide.mobile {
	margin-top:70px;
}

.cycle-slideshow a {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	padding:0;
	display:block;
}

.cycle-slideshow a img {
	width:100%;
	padding:0;
	display:block;
}

/* set border-box so that percents can be used for width, padding, etc (personal preference) */
.cycle-slideshow,.cycle-slideshow * {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

.cycle-slideshow a:first-child {
	position:static;
	z-index:100;
}

.cycle-prev,.cycle-next {
	position:absolute;
	top:50%;
	z-index:601;
	cursor:pointer;
	opacity:.5;
	color:#fff;
	font-size:2em;
	text-shadow:2px 2px 6px #000;
}

.cycle-prev i,.cycle-next i {
	font-weight:900;
}

.cycle-prev {
	left:15px;
}

.cycle-next {
	right:15px;
}

.cycle-prev:hover,.cycle-next:hover {
	opacity:1;
}

/* pager */
.cycle-pager {
	text-align:center;
	width:auto;
	z-index:600;
	position:absolute;
	bottom:0px;
	left:0;
	right:0;
	overflow:hidden;
}

.cycle-pager span {
	font-family:arial;
	font-size:50px;
	width:24px;
	height:24px;
	display:inline-block;
	color:#FFF;
	opacity:.5;
	cursor:pointer;
	text-shadow:2px 2px 6px #000;
}

.cycle-pager span.cycle-pager-active, .cycle-pager span:hover {
	opacity:1;
}

.cycle-pager > * {
	cursor:pointer;
}

/* display paused text on top of paused slideshow */
.cycle-paused:after {
    content: 'Paused'; color: white; background: black; padding: 10px;
    z-index: 500; position: absolute; top: 10px; right: 10px;
    border-radius: 10px;
    opacity: .5; filter: alpha(opacity=50);
}

/* caption */
.cycle-caption {
	position:absolute;
	color:#fff;
	bottom:15px;
	right:15px;
	z-index:500;
}

/* overlay */
.cycle-overlay {
	position:absolute;
	top:0;
	width:100%;
	z-index:500;
	background:rgba(0,0,0,.20);
	font-family:'Papyrus';
	color:#fff;
	padding:15px;
	text-align:center;
}

div.cycle-overlay div:first-child {
	font-size:2em;
	font-weight:700;
	line-height:1em;
	margin:0;
	color:#fff;
	text-shadow:2px 2px 6px #000;
}

div.cycle-overlay div:nth-child(2) {
	font-size:2em;
	font-weight:500;
	line-height:1em;
	margin:0 0 20px;
	color:#fff;
	text-shadow:1px 1px 6px #000;
}

/* iPhone Portrait */
@media screen and (max-width: 415px) {
	.cycle-overlay {
		background:none;
	}
	
	div.cycle-overlay div:first-child {
		font-size:1.5em;
	}
	
	div.cycle-overlay div:nth-child(2) {
		font-size:1em;
	}
}