#slider {
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
    padding: 0;
    background-color: #000;
}

#slider img {
}

#slider .img {
	width:100%;
	margin:0;
	padding:0;
} 


.slide {
	position:absolute;
	width:100%;
	height:100%;
}

.slide-copy{
	position: absolute;
	bottom: 0;
	left: 0;
	padding:10px 20px 20px 20px;
background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 ); /* IE6-9 */
	width: 100%;
	max-height: 32%;
}

.slide-copy:hover {
background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.85) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.85) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a0000000',GradientType=0 ); /* IE6-9 */
}

.sticky-slider #prev, .sticky-slider #next{
    z-index: 100;
    background-color: rgba(0,0,0,.1);
    height: 50px;
    width: 40px;
    display: inline-block;
    position: relative;
    top: 40%;
    margin: 0;
    padding: 0;
cursor: pointer;
}

.sticky-slider #prev:hover, .sticky-slider #next:hover {
    background-color: rgba(0,0,0,0.5);
}

.sticky-slider #next{
	float:right;
	right:0;
}

.sticky-slider #prev{
	float:left;
	left:0;
}

.sticky-slider .arrow-left,
.sticky-slider .arrow-right {
	width: 0; 
	height: 0; 
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	position: relative;
	top: 30%;
}

.sticky-slider .arrow-right {
	border-left: 10px solid #fff;
	right: -40%;
}

.sticky-slider .arrow-left {
    border-right: 10px solid #fff;
    left: 30%;
}