#slider-wrap{ 
    max-width:800px;
    margin: 0 auto;
    margin-top: 0px;
}

#active-slide {
    width: 100%;
    display: table;
    position: relative;
    overflow: hidden;
	border-radius: 6px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

#slider{
    position: relative;
    width: calc(100% * 30);
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}

.slide{
    width: calc(100%/30);
    list-style: none;
    display: inline;
    float: left;
}

.slide img {
    width:100%;
}

.Radio-But{
    margin: 30px 0 30px;
    text-align:center;
	border-radius: 100%;
}

.Radio-But .ctrl-select {
    margin:2px 5px;
    display:inline-block;
    width:16px;
    height:16px;
    overflow:hidden;
    text-indent:-9999px;
    border: 2px solid #1e180b !important;
	border-radius: 100%;
}

.Radio-But .ctrl-select:hover {
    cursor:pointer;
    background-position:center center;
}

.Radio-But .ctrl-select.active {
    background-position:center top;
    background-color: #fff;
    border: 2px solid #9d8a6f !important;
	border-radius: 100%;
}

#prewbutton, #nextbutton {
    display:block;
    width:62px;
    height:62px;
    position:absolute;
    top:45%;
    overflow:hidden;
    text-indent:-999px;
    background: url(../images/prev-selector.png) left center no-repeat scroll !important;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(139, 131, 120);
    opacity:0.5;
    z-index:3;
    outline:none !important;
}

#prewbutton {
    left:10px;
}

#nextbutton {
    right:10px;
    background: url(../images/next-selector.png) right center no-repeat scroll !important;
}

#prewbutton:hover, #nextbutton:hover {
    opacity:1;
}