@charset "utf-8";
/* CSS Document */
.cycle-slideshow {
    width:100%;
	height: 100%;
	margin:0 auto;
}
.cycle-slideshow .bgBanner {
    width: 100%;
	height: 100%;
}
.cycle-slideshow ul, .cycle-slideshow li {
    width:100%;
	height: 100%;
}
.cycle-slideshow li img {
    width:100%;
	height: 100%;
	position:absolute;
	top:0;
	right:0;
	z-index:200;
}




/*****/

.prev:before, .next:before {
    font-family:'LigatureSymbols';
    color: #FFF;
    font-weight: normal;
    font-size:3.1em;
    position: absolute;
}
@media only screen and (max-width:700px) {
	.prev:before, .next:before {
		display:none;
	}
}
.prev {
    width:50px;
    height:50px;
	margin:-25 0 0 0;
    position:absolute;
    left:0px;
    top:50%;
    text-align:center;
    cursor:pointer;
    opacity:0;
    filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    z-index:500;
}
.next {
    width:50px;
    height:50px;
	margin:-25 0 0 0;
    position:absolute;
    right:25px;
    top:50%;
    text-align:center;
    cursor:pointer;
    opacity:0;
    filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    z-index:500;
}
.next:before {
    content: "\E112"
}
.prev:before {
     content: "\E080"
}
.cycle-slideshow:hover .prev {
    opacity: 1;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	
    -moz-animation: bounceInLeft  0.7s;
    -webkit-animation: bounceInLeft  0.7s;
    animation: bounceInLeft 0.7s;
}
.cycle-slideshow:hover .next {
    opacity: 1;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	
    -moz-animation: bounceInRight  0.7s;
    -webkit-animation: bounceInRight  0.7s;
    animation: bounceInRight 0.7s;
}



/**/

.cycle-pager { 
	width: 100%;
	position: absolute;
	bottom: 7px;
    text-align: center;
	overflow: hidden;
	z-index: 400;
}
.cycle-pager span { 
	width:16px !important;
	height:16px !important;
	margin:0 3px; 
    display:inline-block;
	cursor:pointer;
	font-size:2.5em;
	color:#FFF;
}
.cycle-pager span.cycle-pager-active {
	color: var(--color-003);
}
.cycle-pager > * {
	cursor: pointer;
}
@media only screen and (max-width:800px) {
	.cycle-pager {
		display:none;
	}
}
/**/
#progress {
	width: 0px;
	height: 7px;
	position: absolute;
	bottom: 0;
	left: 0;
	background: rgba(254,68,9,.5);
	z-index:500;
}
@media only screen and (max-width:700px) {
	#progress {
		height:3px;
		z-index:1;
	}
}