@charset "utf-8";
/* CSS Document */

#slideshow {
  margin: 40px auto;
  position: relative;
  width: 865px;
  height: 495px;
  padding: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

#slideshow > div {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
}

#slideshow img {
  width: 845px;
  height: 475px;
}

#play-pause {
    position: absolute;
    bottom: 1em;
    left: 2em;
}

#play-pause .glyphicon {
    font-size: 5em;
	color:#FC7753;
	margin-bottom: 0.6em;
    margin-left: 0.2em;
}

/* Small Devices, Tablets */
@media only screen and (max-width : 992px) {
#slideshow {
  margin: 5px auto;
  position: relative;
  width: 100%;
  height: 480px;
  padding: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

#slideshow > div {
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
}

#slideshow img {
  width: 100%;
  height: auto;
}
	
	#play-pause .glyphicon {
    font-size: 3em;

}
}

