.c5-cycle-slideshow .slide {
	width: 100%; position: relative;
}
/* if js, hide all. and then show just first. */
.js .c5-cycle-slideshow .slide {
	display: none;
}
.js .c5-cycle-slideshow .slide:first-child {
	display: block;
}
/* but if old IE, show all because it doesn't support :first-child */
.lt-ie8 .c5-cycle-slideshow .slide:first-child {
	display: block;
}

.c5-cycle-slideshow .cycle-overlay {
	position: absolute;
	background-color: #fff;
	opacity: 0.8;
	width: 100%;
	bottom: 50px;
	
	padding: 12px 15% 15px 5%;
}

.c5-cycle-slideshow .cycle-overlay h3 {
	color: #2d2e2e;
	font: 24px 'Oswald', sans-serif;
	margin-bottom: 10px;
}
.c5-cycle-slideshow .cycle-overlay p {
	color: #2d2e2e;
	font: 12px 'SourceSansPro', sans-serif;
}

.c5-cycle-slideshow .cycle-overlay a {
	color: #993366;
	text-decoration: none;
}
.c5-cycle-slideshow .cycle-overlay a:before {
	content: '';
	display: block;
	background: url(images/link-sprite.png) no-repeat left top;
	height: 12px;
	width: 12px;
	display: inline-block; *display: inline; *zoom: 1;
	vertical-align: middle;
	margin: 0 5px;
}
.c5-cycle-slideshow .cycle-overlay a:hover {
	color: #999;
}
.c5-cycle-slideshow .cycle-overlay a:hover:before {
	background-position: 0 -20px;
}

/* pager */
.cycle-pager {
	text-align: center;
	width: 100%;
	z-index: 101;
	position: absolute;
	bottom: 10px;
	overflow: hidden;
}
.cycle-pager span {
	width: 17px;
	height: 17px;
	display: inline-block;
	cursor: pointer;
	
	margin: 0 2px;
	
	background: url(home-slide-pager-bg.png) no-repeat 0 -17px;
	/* hide the text */
	border: 0;
	font: 0/0 a;
	text-shadow: none;
	color: transparent;
	background-color: transparent;
}
.cycle-pager span.cycle-pager-active { background-position: 0 0; }


