@charset "UTF-8";
.GALLERY-Left-300w {
	float: left;
	width: 312px;
}
.GALLERY-Right {
	background-image: url(../../_assets/backgrounds/bg-spacer-vertical.png);
	background-repeat: repeat-y;
	background-position: left top;
	margin-left: 310px;
	padding-left: 18px;
}
.GALLERY-Right-inner {
	background-image: url(../../_assets/backgrounds/bg-trans40white.png);
	background-repeat: repeat;
	padding: 10px;
}
.GALLERY-Right-inner .grid-item {
	transition: 0.8s;
	position: relative;
}
.GALLERY-Right-inner .grid-item img {
	object-fit: cover;
	display: block;  /* MUST BE BLOCK - to remove extra space below image  */
	height: 100%; /* IF YOU WANT TO MAKE THUMBS AN EXACT SIZE make it XXpx - But gap between each changes*/
	width: 100%;
}
.GALLERY-Right-inner .grid-item:hover {
	box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.7);
	transition: 0.8s;
	opacity: 0.7;
}
.GALLERY-Right-content {
	display: grid;
	grid-template-columns: repeat(4, 1fr); /* HOW MANY IMAGES ACROSS THE MEASURE. Here it is 4  */
	grid-gap: 4px;
	padding-bottom: 120px;
	padding-top: 10px;
	padding-right: 10px;
	padding-left: 10px;
	background-color: #FFF;
	background-image: url(../../_assets/backgrounds/bg-decor.png);
	background-repeat: no-repeat;
	background-position: right bottom;
}
.magnifying-glass {
	position: absolute;
	z-index: 1000;
	right: 4px;
	bottom: 8px;
	opacity: 0.6;
}
.magnifying-glass:hover      {
	opacity: 1.0;
}
a{ /* Part of the 'Gallery' - MAKES THE ANIMATED 'PREVIOUS' AND 'NEXT' BUTTONS  */
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}
#gallery-Overlay {
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #316D88;
	cursor: pointer;
}
#gallery-Center, #gallery-BottomContainer {
	position: absolute;
	z-index: 9999;
	overflow: hidden;
	background-color: #FFF;
}
.gallery-Loading {
	background: #fff url(assets/loading.gif) no-repeat center;
}
#gallery-Image {
	position: absolute;
	left: 0;
	top: 0;
	border: 10px solid #fff;
	background-repeat: no-repeat;
}
#gallery-Slide{
	display: block;
	position: absolute;
	width: 100%;
}
#gallery-PrevLink, #gallery-NextLink {
	display: block;
	position: absolute;
	top: 0;
	width: 50%;
	outline: none;
	font-size: 100000px;  /* Workaround needed for IE */
	overflow: hidden;     /* Workaround needed for IE */
	color: #666;
	line-height: 9999px; /* THIS WAS ADDED LATER DUE TO ERRORS */
}
#gallery-PrevLink {
	left: 0;
}
#gallery-PrevLink:hover {
	background: transparent url(assets/prevlabel.png) no-repeat 0 15%;
}
#gallery-NextLink {
	width: 100%;
	right: 0;
}
#gallery-NextLink:hover {
	background: transparent url(assets/nextlabel.png) no-repeat 100% 15%;
}
#gallery-Bottom {
	font-size: 12px;
	color: #666;
	line-height: 16px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 8px;
	padding-left: 10px;
}
#gallery-CloseLink {
	display: block;
	float: right;
	width: 66px;
	height: 22px;
	background: transparent url(assets/closelabel.png) no-repeat center;
	outline: none;
	margin-top: 0px;
	margin-right: 0;
	margin-bottom: 5px;
	margin-left: 0;
}
#gallery-Caption, #gallery-Number {
	margin-right: 71px;
	color: #F00;
}
#gallery-Caption {
	font-size: 16px;
	color: #069;
	line-height: 18px;
}
******************* RESPONSIVE CSS {
}
@media (max-width:800px) {
.GALLERY-Left-300w {
	order: 2;
	width: 100%;
}
.GALLERY-Right {
	background-image: none;
	margin-left: 0px;
	padding-left: 0px;
	padding-bottom: 8px;
}
.GALLERY-Right-inner {
	grid-template-columns: repeat(1, 1fr);
	grid-gap: 4px;
	padding: 8px;
	background-image: url(../../_assets/backgrounds/bg-trans60white.png);
}
.GALLERY-Right-content {
	grid-template-columns: repeat(4, 1fr); /* HOW MANY IMAGES ACROSS THE MEASURE. Here it is 4  */
	grid-gap: 4px;
	display: block;
}
.GALLERY-Right-inner .grid-item {
	margin-bottom: 4px;
}
.GALLERY-Right-inner .grid-item:hover {
	box-shadow: none;
}
