<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
This css is an extension to bootstrap 2.3.2
stxCarousel requires bootstrap carousel css classes

*/
.stxCarousel {
  position: relative;
  line-height: 1;
  overflow: hidden;
  text-align: left;
}
.carousel-inner {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.carousel-inner &gt; .item {
	position: relative;
	display: none;
	-webkit-transition: 0.6s ease-in-out left;
	-moz-transition: 0.6s ease-in-out left;
	-o-transition: 0.6s ease-in-out left;
	transition: 0.6s ease-in-out left;
}

.carousel-inner &gt; .item &gt; img, .carousel-inner &gt; .item &gt; a &gt; img {
	display: block;
	line-height: 1;
}

.carousel-inner &gt; .active, .carousel-inner &gt; .next, .carousel-inner &gt; .prev {
	display: block;
}

.carousel-inner &gt; .active {
	left: 0;
}

.carousel-inner &gt; .next, .carousel-inner &gt; .prev {
	position: absolute;
	top: 0;
	width: 100%;
}

.carousel-inner &gt; .next {
	left: 100%;
}

.carousel-inner &gt; .prev {
	left: -100%;
}

.carousel-inner &gt; .next.left, .carousel-inner &gt; .prev.right {
	left: 0;
}

.carousel-inner &gt; .active.left {
	left: -100%;
}

.carousel-inner &gt; .active.right {
	left: 100%;
}

.stxCarousel-control {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  font-size: 40px;
  font-weight: 100;
  line-height: 30px;
  color: #ffffff;
  text-align: center;
  background: transparent;
  border: none;
  opacity: 0.5;
}
.stxCarousel-control:hover, .stxCarousel-control:focus {
	color: #ffffff;
	text-decoration: none;
	opacity: 0.9;
}

.stxCarousel-control.right {
    right: 15px;
    left: auto;
}
.stxCarousel-indicators {
  position: relative;
  left: 46%;
  z-index: 5;
  margin: 0;
  list-style: none;
  margin-top: 10px;
}

.stxCarousel-indicators li {
  display: block;
  float: left;
  width: 10px;
  height: 10px;
  margin-left: 5px;
  text-indent: -999px;
  background-color: #ccc;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 5px;
}

.stxCarousel-indicators .active {
  background-color: #fff;
}
</pre></body></html>