


        #slider .slide {
            position: relative;
            height: 100%;
            overflow: hidden;
        }

        #mainSlide {
            width: auto;
        }

        #slider, #slider img {
            width: 100%;
        }

        .centeredDotsControls, .centeredDotsControls a, .centeredDotsControls a span {
            z-index: 2;
            position: relative;
        }

        .centeredDotsControls a {
            width: 15px;
            height: 15px;
            margin: 7px;
            background: transparent;
            border-radius: 15px;
            display: inline-block;
            /*text-indent: -9000px;*/
        }

        .controls *, .controls {
            z-index: 999;
        }

        .centeredDotsControls a {
            background: #ffffff;
            text-decoration: none;
            color: #fff;
        }
        .centeredDotsControls a:hover {
            background: #666666;
            text-decoration: none;
            color: #666666;
        }
        .centeredDotsControls a.current {
            background: #000000;
            color: #000000;
        }




/*
  Add ken burns effect to supersized
 */

/*.slide {
  -moz-animation: move 14s ease infinite;
  -webkit-animation: move 14s ease infinite;
  animation: move 14s ease infinite;
}*/

.slide {
  -moz-animation: move 24s ease;
  -webkit-animation: move 24s ease;
  animation: move 24s ease;
  -webkit-animation-fill-mode      : forwards;
  -moz-animation-fill-mode         : forwards;
  -ms-animation-fill-mode          : forwards;
  -o-animation-fill-mode           : forwards;
  animation-fill-mode              : forwards;
}

@-moz-keyframes move {
  from {
    -moz-transform: scale(1);
    transform: scale(1);
  }

  to {
    -moz-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@-webkit-keyframes move {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  to {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@keyframes move {
  from {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  to {
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}