/* slider
--------------------------------------------------------------*/

ul.slideshow  {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.slideshow li {
  position: absolute;
  list-style: none;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
}

.slideshow li.active {
  z-index: 10;
}

.slideshow li.first {
  display: block;
}

.slideshow li * {
  position: relative;
}

.slideshow li img {
  width: 100%;
}

.slideshow li div {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.7);
  width: 300px;
  padding: 5px 12px;
}

.slideshow li h4 {
  margin-bottom: 5px;
  font-size: 20px;
}

.slideshow li small {
  font-size: 15px;
}

.slideshow h4 a {
  color: #fff;
}

.slideshow small a{
  color: #ccc;
}

.slider-nav {
  top: -30px;
  right: 0;
  position: absolute;
  z-index: 100;
}

.slider-nav a {
  width: 10px;
  height: 10px;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.4);
  -webkit-box-shadow:
    inset 0 0 4px rgba(0,0,0,0.3),
    inset 0 0 5px rgba(0,0,0,0.3),
    inset 0 0 9px rgba(0,0,0,0.3),
     0 1px 1px rgba(255,255,255,0.5);
  cursor: pointer;
  text-indent: -999em;
  display: inline-block;
  outline: none;
  margin-right: 10px;
}

.slider-nav a:hover {
  background: #555;
}

.slider-nav a.active {
  background: rgba(255, 255, 255, 0.8);
  border-color: #aaa;
  -webkit-box-shadow:
    inset 0 0 4px #02D0FE,
    inset 0 0 5px #02D0FE,
    inset 0 0 9px #02D0FE,
     0 1px 1px rgba(255, 255, 255, 0.5),
     0 0 5px #02D0FE,
     0 0 10px #02D0FE;
  -moz-box-shadow:
    inset 0 0 4px #02D0FE,
    inset 0 0 5px #02D0FE,
    inset 0 0 9px #02D0FE,
     0 1px 1px rgba(255, 255, 255, 0.5),
     0 0 5px #02D0FE,
     0 0 10px #02D0FE;
  box-shadow:
    inset 0 0 4px #02D0FE,
    inset 0 0 5px #02D0FE,
    inset 0 0 9px #02D0FE,
     0 1px 1px rgba(255, 255, 255, 0.5),
     0 0 5px #02D0FE,
     0 0 10px #02D0FE;
}