.wideslider {
    width: 100%;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.wideslider ul,
.wideslider ul li {
    float: left;
    display: inline;
    overflow: hidden;
}

.wideslider ul li img {
    width: 100%;
    display: none;
}

.wideslider_base {
    top: 0;
    left: 0 !important;
    right: 0 !important;
    margin: auto;
    position: absolute;
}

.wideslider_wrap {
    top: 0;
    position: absolute;
    overflow: hidden;
}

.slider_prev,
.slider_next {
    top: 0;
    overflow: hidden;
    position: absolute;
    z-index: 100;
    cursor: pointer;
}

.slider_prev {
    background: url(./../img/prev_off.png) no-repeat;
    background-position: center center;
    top: 40%;
    left: -25px !important;
    width: 50px !important;
    height: 50px !important;
}

.slider_next {
    background: url(./../img/next_off.png) no-repeat;
    background-position: center center;
    top: 40%;
    right: -25px !important;
    width: 50px !important;
    height: 50px !important;
}

.slider_prev:hover {
    background: url(./../img/prev_on.png) no-repeat;
    background-position: center center;
}

.slider_next:hover {
    background: url(./../img/next_on.png) no-repeat;
    background-position: center center;
}

.pagination {
    display: none;
}

/* =======================================
	ClearFixElements
======================================= */
.wideslider ul:after {
    content: ".";
    height: 0;
    clear: both;
    display: block;
    visibility: hidden;
}

.wideslider ul {
    display: inline-block;
    overflow: hidden;
}