.unslider {
  overflow: auto;
  height: 100%;
  width: 100%;
  display: block;
}
.unslider-wrap {
  position: relative
}
.unslider-wrap.unslider-carousel li {
  float: left
}
.unslider-vertical>ul {
  height: 100%
}
.unslider-vertical li {
  float: none;
  width: 100%
}
.unslider-fade {
  position: relative
}
.unslider-fade .unslider-wrap li {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 8
}
.unslider-fade .unslider-wrap li.unslider-active {
  z-index: 10
}
.unslider li {
  list-style: none;
  margin: 0;
  padding: 0;
  border: none
}
/*** Slider Left/Right Arrows ***/
.unslider-arrow {
  position: absolute;
  top: 0px;
  bottom: 0px;
  margin: auto 0;
  outline: 0;
  width: 30px;
  height: 51px;
  text-indent: -9999px;
  z-index: 10;
  cursor: pointer;
  transition: none !important;
  
  opacity: 0;
  transition:opacity 0.25s ease 0s !important;
}
.unslider-arrow.next {
  right: 2%;
  background: url(/images/layout/arrow_right.png) no-repeat scroll left top transparent;
}
.unslider-arrow.prev {
  left: 2%;
  background: url(/images/layout/arrow_left.png) no-repeat scroll left top transparent;
}

.banner_main_block:hover .unslider-arrow {
	opacity: 1;
}

.unslider-arrow.prev:hover {
  background-position: left bottom;
}
.unslider-arrow.next:hover {
  background-position: left bottom;
}
/*** Slider "Dots" Navigation ***/
.unslider-nav ol {
  list-style: none;
  text-align: center;
}
.unslider-nav ol li {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 4px;
  background: transparent;
  border-radius: 5px;
  overflow: hidden;
  text-indent: -999em;
  border: 2px solid #fff;
  cursor: pointer;
}
.unslider-nav ol li.unslider-active {
  background: #fff;
  cursor: default;
}

/* */