#gallery-overlay {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 1500;
	left: 0;
	top: 0;
	text-align: center;
	/**/
	display: none;
}
#gallery-destination {
	display: inline-block;
	vertical-align: middle;
	width: auto;
	height: auto;
	position: relative;
	overflow: hidden;
}
#gallery-destination img {
	max-width: 100%;
	max-height: 100%;
}
#gallery-previous {
	position: absolute;
	top: 50%;
	left: 10%;
	cursor: pointer;
}
#gallery-next {
	position: absolute;
	top: 50%;
	right: 10%;
	cursor: pointer;
}
#gallery-close {
	position: absolute;
	top: 2%;
	right: 10%;
	cursor: pointer;
}
#gallery-loading {
	position: absolute;
}
#gallery-more {
	position: absolute;
	top: 25%;
	right: 10%;
	cursor: pointer;
}
.spinner {
	width: 50px;
	height: 50px;
	text-align: center;
	font-size: 10px;
}
.spinner > div {
	height: 100%;
	width: 6px;
	display: inline-block;
	-webkit-animation: stretchdelay 1.2s infinite ease-in-out;
	animation: stretchdelay 1.2s infinite ease-in-out;
}
.spinner .rect2 {
	-webkit-animation-delay: -1.1s;
	animation-delay: -1.1s;
}
.spinner .rect3 {
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}
.spinner .rect4 {
	-webkit-animation-delay: -0.9s;
	animation-delay: -0.9s;
}
.spinner .rect5 {
	-webkit-animation-delay: -0.8s;
	animation-delay: -0.8s;
}
 @-webkit-keyframes stretchdelay {
 0%, 40%, 100% {
-webkit-transform: scaleY(0.4)
}
 20% {
-webkit-transform: scaleY(1.0)
}
}
 @keyframes stretchdelay {
 0%, 40%, 100% {
 transform: scaleY(0.4);
 -webkit-transform: scaleY(0.4);
}
20% {
 transform: scaleY(1.0);
 -webkit-transform: scaleY(1.0);
}
}
.gallery-menu {
	text-align: center;
}
.gallery-menu li {
	display: inline-block;
	vertical-align: top;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	margin: 0px;
	list-style: none;
	overflow: hidden;
}
.gallery-menu li a {
	padding: 5px 15px;
	display: block;
	color: inherit;
	text-decoration: none;
}
.gallery-container {
	margin: 0px;
	width: 100%;
}
.gallery-item {
	overflow: hidden;
	cursor: pointer;
	position: relative;
		/**/
	margin-right: -0.5px;
	padding: 0px;
	width: 10%;
	float: left;
}
.gallery-item img {
	max-width: none;
}
.gallery-cover {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
	/**/
	left: -100%;
	top: -100%;
}
.gallery-description {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 2;
	text-align: center;
	/**/
	display: none;
}
.gallery-icon {
	width: 30px;
	height: 30px;
	line-height: 35px;
	margin-top: 30%;
}
.gallery-expand {
	/**/
	display: none;
}
.gallery-text {
	width: 100%;
	height: 100%;
	padding: 10%;
	position: absolute;
	top: 0;
	left: 0;
	text-align: left;
	/**/
	display: none;
}
.gallery-text h3{
	display: inline-block;
	width: 39%;
	height: 10%;
	border-bottom: 3px dashed;
}
.gallery-text p{
	line-height: 200%;
}
/*RESPONSIVE*/
@media (min-width: 768px) and (max-width: 992px){
.gallery-item {
	width: 33.3%;
}
}
@media (min-width: 500px) and (max-width: 767px){
.gallery-item {
	width: 50%;
}
}
@media (max-width: 499px){
.gallery-item {
	width: 100%;
}
}