.gr-gallery {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.gr-gallery-wrapper {
	width: 9999px;
	height: 400px;
	position: relative;
}

.gr-gallery-slide {
	float: left;
	position: relative;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
}

.gr-gallery-caption {
	position: absolute;
	bottom: 1em;
	left: 1em;
	background: rgba( 0, 0, 0, 0.7 );
	color: #fff;
	padding: 0.6em;
	font-size: 14px;
	text-transform: uppercase;
}

.gr-gallery-nav {
	height: 64px;
	width: 100%;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -32px;
	z-index: 1000;
	display: none;
}

.gr-gallery-nav a {
	border: none;
	display: block;
	width: 64px;
	height: 64px;
	cursor: pointer;
	text-indent: -9999em;
	background-color: #000;
	background-repeat: no-repeat;
}

.gr-gallery-nav a:focus {
	outline-style: none;
}

.gr-gallery-nav a.gr-gallery-previous {
	float: left;
	display: none;
	margin-left: 1em;
	background-image: url(images/left.png);

}

.gr-gallery-nav a.gr-gallery-next {
	float: right;
	margin-right: 1em;
	background-image: url(images/right.png);
}


.gr-gallery-pagination {
	margin: 1em 0;
	text-align: center;	
}

.gr-gallery-pagination a {
	width: 13px;
	height: 13px;
	line-height: 13px;
	text-align: center;
	border: 1px solid #ddd;
	color: #000;
	text-decoration: none;
	background: #f5f5f5;
	background: linear-gradient( #f5f5f5, #fff );
	display: inline-block;
	margin-right: 0.7em;
	border-radius: 50%;
	text-indent: -9999em;
}

.gr-gallery-pagination a.current {
	border-color: #000;
	background: #ddd;
	background: linear-gradient( #fff, #f5f5f5 );
}
	
