
.slider {
position: relative;
width:473px;
height:352px;
color: #212121;
overflow: hidden; 
background-color:#FFFFFF;
}

.slider > .slide-item {
width:473px;
height:352px;
text-align: center;
background-color: #ffffff;
position: absolute;
z-index: 1;
display: none; 
top:0px;
left:0px;
}
	
.slider > .slide-item.slide-item-active { z-index: 5; }
.slider > .controls {
position: absolute;
bottom: 0px;
left: 0px;
z-index: 3;
background-color: #fafafa;
border-radius: 0px 5px 0px 0px;
padding: 10px; 
display:none;
}

.slider > .controls a {
margin-right: 10px;
color: #212121;
text-decoration: none; 
}

.slider > .controls a:hover {text-decoration: underline; }

.slider div#slider-top-bar {
position: absolute;
bottom: 0;
left: 0;
right: 0;
width: 100%;
height: 4px;
z-index: 4; 
display:none;
}

.slider div#slider-top-bar span {
position: absolute;
background-color: #979797;
top: 0;
left: 0;
width: 9px;
height: 100%; 
}

.slider div#slider-top-bar span.slider-bar-run {}

.slider div#slider-top-bar span.slider-bar-run-paused {
-webkit-animation-play-state: paused !important;
-moz-animation-play-state: paused !important;
-ms-animation-play-state: paused !important;
-o-animation-play-state: paused !important;
animation-play-state: paused !important; 
}

.slider div#slider-top-bar span.slider-bar-run-none {width: 100% !important; }

@-webkit-keyframes sliderbarrun {
  0% {
    width: 1px; }
  100% {
    width: 100%; } }
@keyframes sliderbarrun {
  0% {
    width: 1px; }
  100% {
    width: 100%; } }