div.gallery-out {
  display: block;
  margin: auto;
  overflow: hidden;
	box-shadow: 0px 0px 8px #000;
	-moz-box-shadow: 0px 0px 8px #000;
	-webkit-box-shadow: 0px 0px 8px #000;
	position: relative;
	background: white;
	background-image: url('images/loading.gif');
	background-repeat: no-repeat;
	background-position: center;
}

div.gallery-in {

}

div.gallery-in img {
  display: none;
}

span.gal-title {
  display: block;
  text-align: center;
  height: 18px;
}

div.gallery-thumbnails {
  height: 60px;
  position: absolute;
  left: 0;
  bottom: -70px;
	-moz-box-shadow: 0px 0px 8px #000;
	-webkit-box-shadow: 0px 0px 8px #000;
}

div.gallery-thumbnails img {
  opacity: 0.6;
}
div.gallery-thumbnails img:hover {
  opacity: 1;
}
div.gallery-thumbnails img.active-thumb {
  opacity: 1;
	-moz-box-shadow: 0px 0px 3px black;
	-webkit-box-shadow: 0px 0px 3px black;
}
div.gallery-thumbnails-mark {
  width: 9px;
  height: 9px;
  background-image: url(images/thumbnails-mark.png);
  position: absolute;
  bottom: 0px;
}

div.gallery-controls {
  height: 20px;
  width: 100%;
  position: absolute;
  left: 0;
  top: -30px;
	-moz-box-shadow: 0px 0px 8px #000;
	-webkit-box-shadow: 0px 0px 8px #000;
  background: black;
  background: rgba(0, 0, 0, 0.7);
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  text-align: center;
  line-height: 20px;
}

div.gallery-controls .gallery-play-pause {
  display: inline-block;
  height: 20px;
  width: 20px;
  background-image: url(images/mediacontrols.png);
  background-repeat: no-repeat;
}

div.gallery-controls .gallery-prev {
  display: inline-block;
  position: absolute;
  height: 20px;
  width: 20px;
  background-image: url(images/mediacontrols.png);
  background-position: -40px 0px;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
}

div.gallery-controls .gallery-next {
  display: inline-block;
  position: absolute;
  height: 20px;
  width: 20px;
  background-image: url(images/mediacontrols.png);
  background-position: -60px 0px;
  background-repeat: no-repeat;
  right: 0;
  top: 0;
}

