.ps-slider {
    position: relative;
    width: 100%;
    background-color: #333;
    height: 90px;
    overflow: hidden
}

.ps-slides {
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: rgba(255, 255, 255, 0.2)
}

.ps-slider-nav {
    position: absolute;
    bottom: 2%;
    left: 50%;
    z-index: 10000;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.slider-nav a.prev,
.slider-nav a.next {
    position: relative;
    text-decoration: none;
    outline: 0;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    margin: 10px
}

.ps-right-nav-btn,
.ps-left-nav-btn {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 10000;
    cursor: pointer;
    background-color: transparent;
    border: 0;
    padding: 15px;
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    outline: 0
}

.ps-right-nav-btn {
    right: 0
}

.ps-slider-nav ul {
    list-style: none;
    display: inline-block;
    vertical-align: middle;
	margin-top:-85px;
	margin-left:170px;
	position:absolute;
	width:200px;

}

.ps-slider-nav ul li {
    margin: 2px;
    float: left
}

.ps-slider-nav ul li a {
    display: block;
    width: 15px;
    height: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    box-shadow: rgba(0, 0, 0, 0.2) 0 0 4px;
    border-radius: 50%;
    cursor: pointer;
    text-decoration: none;
    outline: 0;
    transition: all .3s
}

.ps-slider-nav ul li a.ps-current {
    background-color: #D90000
}

.ps-loader {
    width: 75px;
    height: 75px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1000;
    transform: translate3d(-50%, -50%, 0)
}

.ps-double-bounce1,
.ps-double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #5293ff;
    opacity: .6;
    position: absolute;
    top: 0;
    left: 0;
    animation: sk-bounce 2.0s infinite ease-in-out
}

.ps-double-bounce2 {
    animation-delay: -1.0s
}

@keyframes sk-bounce {
    0%,
    100% {
        transform: scale(0);
        -webkit-transform: scale(0)
    }
    50% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
}

.ps-slide {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #888;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    opacity: 0;
    -ms-transform: translateX(-200%);
    transform: translateX(-200%);
    transition: opacity .5s linear
}

.ps-slide .video {
    position: absolute;
    height: 0;
    width: 100%;
    top: 50%;
    left: 0;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding-bottom: 56.25%
}

.ps-slide .video iframe {
    position: absolute;
    height: 100%;
    width: 100%
}

.ps-slide.ps-current {
    opacity: 1;
    -ms-transform: translateX(0);
    transform: translateX(0)
}