@charset "utf-8";
    * CSS Document */
	
/* 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 {
	min-width: 200px;
	max-width: 100%;
	padding: 0;
	position: relative;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	clear: both;
	float: left;
	left: auto;
	right: auto;
	display: block;
	width: 100%;   

 }

/* slideshow images (for most of the demos, these are the actual "slides") */
.cycle-slideshow img {
	/* 
    some of these styles will be set by the plugin (by default) but setting them here
    helps avoid flash-of-unstyled-content
    */
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 0;
	display: block;
	clear: both;
	float: left;
}

/* in case script does not load */
.cycle-slideshow img:first-child {
    position: static; z-index: 100;
}

/* caption */
.cycle-caption {
	position: absolute;
	color: white;
	bottom: 10px;
	right: 15px;
	z-index: 700;
}



.cycle-overlay {
	font-family: "Courier New", Courier, monospace;
	position: absolute;
	bottom: 0;
	width: 100%;
	z-index: 600;
	background: black;
	color: white;
	opacity: .5;
	text-indent: 120px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	word-spacing: 1px;
	height: 35px;
}

/* pager */
.cycle-pager {
	text-align: center;
	width: 100%;
	z-index: 600;
	position: relative;
	overflow: hidden;
	float: left;
	padding-bottom: 0px;
	clip: rect(-50px,auto,auto,auto);
	margin-top: -50px;
}
.cycle-pager span { 
    font-family: arial; font-size: 50px; width: 16px; height: 16px; 
    display: inline-block; color: #ddd; cursor: pointer; 
}
.cycle-pager span.cycle-pager-active { color: #D69746;}
.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: 2px;
    opacity: .5; filter: alpha(opacity=50);
}
#main .cycle-slideshow #pause_play {
	float: left;
	position: relative;
	left: 15px;
	z-index: 650;
	height: 35px;
}
