<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
HTML:
  &lt;div class="slideshow-controller"&gt;
    &lt;ul&gt;
      &lt;li class="first"&gt;&lt;a /&gt;&lt;/li&gt;
      &lt;li class="prev"&gt;&lt;a /&gt;&lt;/li&gt;
      &lt;li class="pause play"&gt;&lt;a /&gt;&lt;/li&gt;
      &lt;li class="next"&gt;&lt;a /&gt;&lt;/li&gt;
      &lt;li class="last"&gt;&lt;a /&gt;&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/div&gt;
  
Notes:
  Customize the hidden / visible classes to affect the controller animation.
*/

.slideshow-page13-controller {
  background: url(controller.png) no-repeat;
  height: 42px;
  margin-top: -21px;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: -119px;
  overflow: hidden;
  position: absolute;
  width: 238px;
  z-index: 10000;
}
.slideshow-page13-controller * {
  margin: 0;
  padding: 0;
}
.slideshow-page13-controller-hidden { 
  opacity: 0;
}
.slideshow-page13-controller-visible {
  opacity: 1;
}
.slideshow-page13-controller a {
  background: url(controller-controls.png) no-repeat;
  cursor: pointer;
  display: block;
  height: 18px;
  overflow: hidden;
  position: absolute;
  top: 12px;
}
.slideshow-page13-controller li {
  list-style: none;
  list-style-type: none !important; /* MS */
  list-style-position: outside !important;  /* MS */
}       
.slideshow-page13-controller li.first a {
  left: 33px;
  width: 19px;
}
.slideshow-page13-controller li.first a.active {
  background-position: 0 -18px;
}
.slideshow-page13-controller li.prev a {
  background-position: -19px 0;
  left: 65px;
  width: 28px;
}
.slideshow-page13-controller li.prev a.active {
  background-position: -19px -18px;
}
.slideshow-page13-controller li.pause a {
  background-position: -47px 0;
  left: 109px;
  width: 20px;
}
.slideshow-page13-controller li.pause a.active {
  background-position: -47px -18px;
}
.slideshow-page13-controller li.play a {
  background-position: -67px 0;
}
.slideshow-page13-controller li.play a.active {
  background-position: -67px -18px;
}
.slideshow-page13-controller li.next a {
  background-position: -87px 0;
  left: 145px;
  width: 28px;
}
.slideshow-page13-controller li.next a.active {
  background-position: -87px -18px;
}
.slideshow-page13-controller li.last a {
  background-position: -115px 0;
  left: 186px;
  width: 19px;
}
.slideshow-page13-controller li.last a.active {
  background-position: -115px -18px;
}

.slideshow-page13-controller {
  left: 50%;
}
.slideshow-page13-controller {
  top: 50%;
}</pre></body></html>