.tiny-gallery {
	display: block;
}

.tiny-gallery .tg-single {
	display: block;
	float: left;
	position: relative;
}

.tiny-gallery .tg-single.cols2 { width: 50%; }
.tiny-gallery .tg-single.cols2:nth-child(2n+0) { margin-right: 0; }

.tiny-gallery .tg-single.cols3 { width: 33.3%; }.tiny-gallery .tg-single.cols4 { width: 25%; }
.tiny-gallery .tg-single .tg-inner {
	display: block;
	position: relative;
	overflow: hidden;
	margin: 1px;
}

.tiny-gallery .tg-single a {
	display: block;
	text-decoration: none;
}

.tiny-gallery .tg-single img {
	display: block;
	width: 100%;
	border: none;
	height: auto;
	position: relative;
	
	/*
	-webkit-transition: -webkit-transform 0.5s ease;
	-moz-transition: -moz-transform 0.5s ease;
	transition: transform 0.5s ease;
	*/
	opacity: 1;
	-webkit-transition: opacity 0.2s ease;
	-moz-transition: opacity 0.2s ease;
	transition: opacity 0.2s ease;
}

.tiny-gallery .tg-single:hover img {
	/*
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
	*/
	opacity: 0.8;
}

.tiny-gallery .tg-single span.below-image {
	display: block;
	width: 90%;
	height: 50px;
	overflow: hidden;
	padding: 5px 5%;
	text-align: center;
	font-size: 0.9em;
}

.tiny-gallery .tg-single span.in-image {
	display: block;
	position: absolute;
	left: 5%;
	bottom: 10%;
	color: #FFF;
	font-size: 2.4em;
	line-height: 1em;
	text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}


@media only screen and (max-width: 719px) {
	/*
	.tiny-gallery .tg-single span.in-image {
		left: 10px;
		bottom: 10px;
		font-size: 1.8em;
		font-size: 5vw;
	}
	*/
	
}

@media only screen and (max-width: 479px) {

	.tiny-gallery .tg-single {
		width: 100% !important;
		float: none;
	}
	
	.tiny-gallery .tg-single span.in-image { font-size: 2.4em; }

}