﻿/* ============== Single image style page center ============= */

div.img {
	border: 1px solid #ccc;
	margin-bottom: 10px;
	border-radius: 5px;
	overflow: hidden;
	padding: 3px;
}

/* ============== Gallery for responsive images with link option ============= */

#image-gallery {
	
	height: 100%;
	margin: 0 auto;
}

div.img {
	border: 1px solid #ccc;
	margin-bottom: 0px;
	border-radius: 5px;
	overflow: hidden;
	padding: 3px;
	background: white;
}

div.img-link {
	border: 1px solid #ccc;
	margin-bottom: 10px;
	border-radius: 5px;
	overflow: hidden;
	background:white;
}

div.img-link:hover {
	border: 1px solid #777;
	border-radius: 5px;
	-webkit-filter: brightness(110%);
	filter: brightness(110%);
}

div.img-link:active {
	border: 1px solid red;
}

div.img img {
	width: 100%;
	height: auto;
	border-radius: 3px;
	margin-bottom: 0px;
	
}

div.desc {
	padding: 0px;
	text-align: center;
	margin-bottom: 5px;
	background:white;
}

/* ============== Responsive 4-column images ============= */

.responsive-4 {
	padding: 0 6px;
	float: left;
	width: 24.99999%;
}

@media only screen and (max-width: 900px) {
	.responsive-4 {
		width: 49.99999%;
		margin: 6px 0;
	}
}

@media only screen and (max-width: 450px) {
	.responsive-4 {
		width: 100%;
	}
}

.clearfix:after {
	content: "";
	display: table;
	clear: both;
}

/* ============== Responsive 3-column PDF images ============= */

.responsive-pdf {
	padding: 15px 20px;
	float: left;
	width: 32.99999%;
}

@media only screen and (max-width: 900px) {
	.responsive-pdf {
        width: 49.99999%;
		margin: 0px 0px;
	}
}

@media only screen and (max-width: 450px) {
	.responsive-pdf {
		width: 100%;
	}
}

.clearfix:after {
	content: "";
	display: table;
	clear: both;
}

/* ============== Responsive 3-column images ============= */

.responsive {
	padding: 5px 10px;
	float: left;
	width: 32.99999%;
}

@media only screen and (max-width: 900px) {
	.responsive {
        width: 49.99999%;
		margin: 6px 0px;
	}
}

@media only screen and (max-width: 450px) {
	.responsive {
		width: 100%;
	}
}

.clearfix:after {
	content: "";
	display: table;
	clear: both;
}


/* ============== Responsive 2-column images ============= */

.responsive-2 {
	padding: 0 10%;
	float: left;
	width: 49.99999%;
}

@media only screen and (max-width: 900px) {
	.responsive-2 {
		width: 49.99999%;
		padding: 0 8%;
		margin: 6px 0;
	}
}

@media only screen and (max-width: 500px) {
	.responsive-2 {
		width: 100%;
	}
}

.clearfix:after {
	content: "";
	display: table;
	clear: both;
}

/* ============== Responsive 2-wide column images ============= */

.responsive-2wide {
	padding: 0.5% 1%;
	float: left;
	width: 49.99999%;
}

@media only screen and (max-width: 500px) {
	.responsive-2wide {
		width: 100%;
		padding-bottom: 3%;
	}
}

.clearfix:after {
	content: "";
	display: table;
	clear: both;
}

/* ============== Responsive 1-column images ============= */

.image-center-page {
	max-width: 700px;
	height: 100%;
	margin: 0 auto;
}

.responsive-1 {
	padding: 4% 0px;
	float: left;
	width: 95%;
}
@media only screen and (max-width: 500px) {
	.responsive-1 {
	padding: 0% 0px;
	}
}









