#slideshow-container {
    overflow: hidden;
    position: relative;
    width: auto;
    height:380px;
}
#slideshow-container #slideshow {
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    height: 100%;
}
#slideshow-container #slideshow li {
    display: inline;
    float: left;
    margin: 0;
    padding: 0;
    list-style: none;
    height: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

#slideshow-container #slideshow li a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    color: silver;
    transition: color 0.2s ease-in;
}
 
#slideshow-container #slideshow li a:hover {color: white;}
 

#slideshow-container #slideshow li a span {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0.75em 1.5em;
  font-size: 1.3em;
  background: #000000;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  text-align: center;
}

#slideshow-container #btn-prev,
#slideshow-container #btn-next {
    position: absolute;
    top: 50%;
    z-index: 100;
    color: #ffffff;
    font-size: 4em;
    line-height: 1;
    text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5);
    transform: translateY(-50%);
}
 
#slideshow-container #btn-prev {left: 15px;}
#slideshow-container #btn-next {right: 15px;}
#slideshow-container #btn-prev span,
#slideshow-container #btn-next span {display: none;}