/*these are just the default styles used in the Cycle2 demo pages.  you can use these styles or any others that you wish.*/
/* 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;
width: 100%;
}

.cycle-slideshow img:first-child {
position: static; z-index: 100;
}
.cycle-slideshow img {
margin-bottom:-3px;
}

/* pager */
@media only screen and (max-width: 1024px) {
.cycle-pager {
text-align: center; width: 100%; overflow:hidden; position:absolute; bottom:0px; z-index:500;
}
}

@media only screen and (max-width: 768px) {
.cycle-pager {
text-align: center; width: 100%; overflow:hidden; position:absolute; bottom:-3px; z-index:500; padding-bottom:0px;
}
}

@media only screen and (max-width: 600px) {
.cycle-pager {
text-align: center; width: 100%; overflow:hidden; position:absolute; bottom:-5px; z-index:500; padding-bottom:0px;
}
}
@media only screen and (max-width: 414px) {
.cycle-pager {
text-align: center; width: 100%; overflow:hidden; position:absolute; bottom:-10px; z-index:500; padding-bottom:0px;
}
}
@media only screen and (max-width: 360px) {
.cycle-pager {
text-align: center; width: 100%; overflow:hidden; position:absolute; bottom:-12px; z-index:500; padding-bottom:0px;
}
}

.cycle-pager span {
font-family: arial; font-size: 60px; width: 35px; height: 0px;
display: inline-block; color: #ddd; cursor: pointer;
}
.cycle-pager span.cycle-pager-active { color: #D69746;}
.cycle-pager > * { cursor: pointer;}

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

/* overlay */
.cycle-overlay {
font-family: tahoma, arial;
position: absolute; bottom: 0; width: 100%; z-index: 600;
background: black; color: white; padding: 15px; opacity: .5;
}

/* prev / next links */
.cycle-prev, .cycle-next { position: absolute; top: 0; width: 30%; opacity: 0; filter: alpha(opacity=0); z-index: 600; height: 100%; cursor: pointer; }
.cycle-prev { left: 0;  background: url(../images/index/indexslider/slider_left_arrow.png) 5% 50% no-repeat;}
.cycle-next { right: 0; background: url(../images/index/indexslider/slider_right_arrow.png) 95% 50% no-repeat;}
.cycle-prev:hover, .cycle-next:hover { opacity: .7; filter: alpha(opacity=70) }

.disabled { opacity: .5; filter:alpha(opacity=50); }