#suweb_headlines {
	overflow: hidden;
	position: relative;
}

#suweb_headlines .cycle-slideshow img {
	width: 100%;
}

#suweb_headlines div.cycle-slide {
	width: 100%;
}

#suweb_headlines .cycle-button {
	position: absolute;
	width: 100%;
	top: 0; bottom:0;
}

#suweb_headlines .cycle-button a {
	position: absolute;
	font-size: 0;
	top: 50%; margin-top: -45px;
	text-align: center;
	width: 50px; height: 50px;
	background-color: rgba(255, 255, 255, .7);
	display: block;
	z-index: 101;
	text-decoration: none;
	color: white;
	border-radius:50px;
	border: 1px solid rgba(0, 0, 0, .15);
	opacity: 0;
	
	transition: left linear .5s 0, right linear .5s 0, opacity linear .5s 0;
}

#suweb_headlines .cycle-button a:hover {
	background: #fff;
}

#suweb_headlines .cycle-button #_prev { left: -60px; }
#suweb_headlines .cycle-button #_next { right: -60px; }

#suweb_headlines:hover .cycle-button #_prev { left: 10px; opacity: 1; transition: left ease-in .5s 0, right ease-in .5s 0, background linear .2s 0, opacity linear .5s 0; }
#suweb_headlines:hover .cycle-button #_next { right: 10px; opacity: 1; transition: left ease-in .5s 0, right ease-in .5s 0, background linear .2s 0, opacity linear .5s 0; }


#suweb_headlines .cycle-button #_prev:after {
	content: '';
	width: 0; height: 0;
	
	position:absolute;
	left: 50%; top: 50%;
	margin-left: -6px; margin-top: -10px;

	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent; 
	border-right: 10px solid rgba(0, 0, 0, .5);
}

#suweb_headlines .cycle-button #_next:after {
	content: '';
	width: 0; height: 0; margin-top: 15px;
	
	position:absolute;
	left: 50%; top: 50%;
	margin-left: -4px; margin-top: -10px;

	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 10px solid rgba(0, 0, 0, .5);
}


#suweb_headlines .cycle-pager {
	position: absolute;
	top: 0;
	z-index: 102;
	width: 100%;
	text-align: center;
	font-size: 50px;
	line-height: 50px;
}

#suweb_headlines .cycle-pager span {
	cursor: pointer; padding: 0 3px;
	color: rgba(0, 0, 0, .75);

	transition: color linear .3s .3s;
}

#suweb_headlines .cycle-pager .cycle-pager-active {
	color: rgba(255, 255, 255, .75);

	transition: color linear .3s .3s;
}


#suweb_headlines .cycle-caption {
	position:absolute;
	bottom: 0;
	z-index: 201; width: 100%;
	color: #fff;
	background-color: rgba(0, 0, 0, .75);
}


#suweb_headlines .cycle-caption div {
	padding: 15px;
}

#suweb_headlines .cycle-caption div+div {
	padding-top: 0;
}



#suweb_headlines .cycle-caption div.cycle-title {
	font-weight: bold; font-size: 1.3em;
}






