/* responsive slideshow */

@media (max-width: 700px) {
	#sld_container {
		visibility: hidden;
		display: none;
	}
}

.rslides {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
}

.rslides li {
  -webkit-backface-visibility: hidden;
  position: absolute;
  display: none;
  width: 100%;
  left: 0;
  top: 0;
  margin: 0;
}

.rslides li:first-child {
  position: relative;
  display: block;
  float: left;
}

.rslides img {
  display: block;
  height: auto;
  float: left;
  width: 100%;
  border: 0;
}

#sld_container {
	position: relative;	
}

#sld_overlay {
	background: url(../images/core/slideshow_overlay.png) no-repeat;
	background-size: 100% 100%;
	z-index: 1000;
	position: absolute;
	top: 0px;
	bottom: 0px;
	width: 100%;
	box-shadow: 0px 10px 10px rgba(0, 0, 0, 0);
}

#sld_button {
	position: relative;
	top: 43%;
	left: 78.5%;
	z-index: 20000;
	width:18%;
	height:auto;
	transition: all 0.5s;
}

#sld_button:hover {
	top: 38%;
	left: 77.5%;
	width: 20%;
}