@charset "utf-8";
/* CSS Document */

.wideslider {
	margin:0 auto;
	width: 100%;
	text-align: left;
	position: relative;
	overflow: hidden;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    -o-box-sizing: content-box;
    -ms-box-sizing: content-box;
    box-sizing: content-box;
}

.wideslider ul,
.wideslider ul li {
	float: left;
	display: inline;
	overflow: hidden;
}
.wideslider ul li {
	opacity: 0.2;
}
.wideslider ul li.mainActive{
	opacity: 1;
}
.wideslider ul li img {
	width: 100%;
}

.wideslider_base {
	top: 0;
	position: absolute;
}
.wideslider_wrap {
	top: 0;
	position: absolute;
	overflow: hidden;

}
.wideslider .slider_prev,
.wideslider .slider_next {
	top: 0;
	overflow: hidden;
	position: absolute;
	z-index: 100;
	cursor: pointer;
	
}
.wideslider .slider_next {
    background: url(../img/index/main_slider_next.png) no-repeat;
    position: absolute;
    top: 36%;
    right: 5% !important;
    width: 59px !important;
    height: 127px !important;
    display: block;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    opacity: 1;
    z-index: 200;
}
.wideslider .slider_prev {
    background: url(../img/index/main_slider_prev.png) no-repeat;
    position: absolute;
    top: 36%;
    left: 5% !important;
    width: 59px !important;
    height: 127px !important;
    display: block;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    opacity: 1;
    z-index: 200;
}
@media only screen and (max-width: 1279px) {
	.wideslider .slider_next {
	    background: url(../img/index/main_slider_next.png) no-repeat;
	    position: absolute;
	    top: 36%;
	    right: 30px !important;
	    width: 59px !important;
	    height: 127px !important;
	    display: block;
	    cursor: pointer;
	    color: transparent;
	    border: none;
	    outline: none;
	    opacity: 1;
	    z-index: 200;
	}
	.wideslider .slider_prev {
	    background: url(../img/index/main_slider_prev.png) no-repeat;
	    position: absolute;
	    top: 36%;
	    left: 30px !important;
	    width: 59px !important;
	    height: 127px !important;
	    display: block;
	    cursor: pointer;
	    color: transparent;
	    border: none;
	    outline: none;
	    opacity: 1;
	    z-index: 200;
	}
}
.wideslider .pagination {
	bottom: 10px;
	left: 0;
	width: 100%;
	height: 30px;
	text-align: center;
	position: absolute;
	z-index: 200;
	display: none;
}

.wideslider .pagination a {
	background: #ffffff;
	margin: 0 5px;
	width: 3%;
	height: 20px;
	display: inline-block;
	overflow: hidden;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-o-border-radius: 5px;
	-ms-border-radius: 5px;
}
	
.wideslider .pagination a.active {
	background: #ffffff;

	/*background: #465C9E;*/
	filter:alpha(opacity=100)!important;
	-moz-opacity: 1!important;
	opacity: 1!important;
}

/* =======================================
	ClearFixElements
======================================= */
.wideslider ul:after {
	content: ".";
	height: 0;
	clear: both;
	display: block;
	visibility: hidden;
}

.wideslider ul {
	display: inline-block;
	overflow: hidden;
}
.wideslider a{
	text-decoration: none;
	-webkit-transition: opacity 0.5s ease-out;
	-moz-transition: opacity 0.5s ease-out;
	-ms-transition: opacity 0.5s ease-out;
	transition: opacity 0.5s ease-out;
	cursor: pointer;
}

.wideslider a:hover{
	opacity: 0.5;
}

