/*
 * Gallery
 */
    .gallery {
        margin: 1em 0;
        overflow: hidden;
        position: relative;
    }
    .gallery-image {
        float: left;
        width: 100%;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }
    .gallery-image img {
        display: none;
    }
    .gallery .browse {
        height: 36px;
        width: 20px;
        position: absolute;
        top: 50%;
        cursor: pointer;
        padding: 20px;
        margin-top: -37px;
        left: 50%;
    }
    .gallery .prev {
        margin-left: -618px;
    }
    .gallery .next {
        margin-left: 560px;
    }
    .gallery .disabled {
        display: none !important;
    }
	.gallery-stage {
		height: 480px;
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
	.gallery-stage img {
		display: none;
	}
	.gallery .thumbtray {
		background-color: #eee;
	}
	.gallery .thumbs {
		overflow: hidden;
		display: none;
	}
	.gallery .thumbs:hover .thumb {
		opacity: 0.2;
	} 		
	.gallery .thumbs .thumb:hover,
	.gallery .thumbs .thumb.active {
		opacity: 1;
	}
	.gallery .thumb {
		transition: opacity 0.2s;
		cursor: pointer;
		display: block;
		float: left;
		height: 150px;
		width: 200px;
		opacity: 0.2;
	}
	.gallery .toggle {
		text-transform: uppercase;
		text-align: center;
		display: block;
		font-size: 12px;
	}
	.gallery .toggle .arrow {
		vertical-align: middle;
		display: inline-block;
		margin: 0 5px;
		width: 11px;
		height: 3px;
		margin-top: -3px;
	}
	.gallery .toggle .show .arrow {
		margin-top: 0;
	}
	.gallery .toggle:hover {
		text-decoration: none;
	}
	.gallery .toggle .hide {
		display: none;
	}