#gallery-widget { background-color: #333; position: relative; height: 250px; margin: 20px 0;}
#gallery-widget .gallery-image { position: absolute; top: 0; left: 0; display: none; z-index: 5; margin: 5px 4px;}
#gallery-widget .gallery-image.current { display: block}
#gallery-widget .gallery-image img {display: block;border-radius: 5px; border: 2px #000 solid;}
#gallery-widget .description { 
  position: absolute; 
  bottom: 0; 
  left: 0; 
  right: 0;
  background-color: rgba(0,0,0,.5);
  z-index: 10;
}
#gallery-widget .description A { color: #fff; text-decoration: none; padding: 10px 20px; display: block; }

#gallery-widget .arrows { position: absolute; background-color: #000000; z-index: 7; top: 20px; left: 0; right: 0}
#gallery-widget .arrows a {
	display: block;
	position: absolute;
	color: #fff;
	text-decoration: none;
	font-size: 22px;
	opacity: .5;
	background-color:#000;
	background-size: auto auto;
	padding-left: 7px;
	padding-right: 7px;
        padding-top: 7px;
        padding-bottom: 7px;
}
#gallery-widget .arrows a.active:hover { opacity: 1}
#gallery-widget .arrow-prev { left: 6px;}
#gallery-widget .arrow-next { right: 6px;}