@charset "utf-8";
/* CSS Document */

/* HINWEIS: Alle Änderungen wurden mit "geändert" gekennzeichnet */

/**
 *   Here's where everything gets included. You don't need
 *   to change anything here, and doing so might break
 *   stuff. Here be dragons and all that.
 */
/**
 *   Default variables
 *
 *   While these can be set with JavaScript, it's probably
 *   better and faster to just set them here, compile to
 *   CSS and include that instead to use some of that
 *   hardware-accelerated goodness.
 */

.unslider-nav ol { /* geändert */
  list-style: none;
  text-align: center;
	position: relative; /* https://wiki.selfhtml.org/wiki/CSS/Eigenschaften/Positionierung/position */
	z-index: 99; /* unslider-dots liegen auf "zweithöchster" (nach div#wrapper_header) Ebene */
}

.unslider-nav ol li {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0px 4px;
  background: transparent;
  border-radius: 5px;
  overflow: hidden;
  text-indent: -999em;
  border: 2px solid #fff;
  cursor: pointer;
}

.unslider-nav ol li.unslider-active {
  background: #fff;
  cursor: default;
}