
.gallery-frames {
	position:relative;
}

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.gallery-frames .frames_container {
	width:250px;
	height:166px;
	overflow:hidden;
	position:relative;
	display:none;
}

/*
	Each slide
	Important:
	Set the width of your slides
	If height not specified height will be set by the slide content
	Set to display block
*/

.gallery-frames .frames_container div.slide {
	width:250px;
	max-width:250px;
	height:166px;
	display:block;
}
.gallery-frames .frames_container div.slide a img{
    	width:250px;
		max-width:250px;
}
/*
	Next/prev buttons
*/

.gallery-frames .next, .gallery-frames .prev,
.gallery-frames .frame-next, .gallery-frames .frame-prev {
	position:absolute;
	top: 70px;
	width: 19px;
	height: 24px;
	display:block;
	z-index:101;
}

.gallery-frames .frame-prev {
	left: 0;
	background: url(../../img/arrow-prev.png) 0 0 no-repeat;
}

.gallery-frames .frame-next {
	right: 0;
	background: url(../../img/arrow-next.png) 0 0 no-repeat;
}

/*
	Pagination
*/

.gallery-frames .pagination {
	display: none;
}

/*
	Caption
*/

.gallery-frames .caption {
	z-index:500;
	position:absolute;
	bottom: 0px;
	left:0;
	height:auto;
	padding: 7px 10px;
	width: 230px;
	line-height:14px;
	font-size: 11px;
	font-weight: bold;
	color:#fff !important;
	text-shadow:none;
	background: url(../../img/caption_bg.png);
}

.gallery-frames a.caption:hover {
	text-decoration: none;;
}