
.jQueryMosaic {
	width: 100%;
	float: left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	overflow: hidden;
}

.jQueryMosaic>a, .jQueryMosaic>div, .jQueryMosaic>img, .jQueryMosaic>video {
	float: left;
}

.jQueryMosaic>.item {
	position: relative;
}

.jQueryMosaic>.item.withImage {
	background-size: cover;
}

.jQueryMosaic>.item>.overlay {
	opacity: 0;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	transition: opacity .2s ease-in-out;
	-moz-transition: opacity .2s ease-in-out;
	-webkit-transition: opacity .2s ease-in-out;
}

.jQueryMosaic>.item:hover>.overlay {
	opacity: 1;
}

.jQueryMosaic>.item>.overlay>.texts {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 15pt;
	background: rgba(0, 0, 0, .2);
	color: #fff;
}

.jQueryMosaic>.item>.overlay>.texts h1, .jQueryMosaic>.item>.overlay>.texts h2 {
	margin: 0;
	line-height: 1.3em;
}

.jQueryMosaic>.item>.overlay>.texts h1 {
	font-size: 17pt;
}

.jQueryMosaic>.item>.overlay>.texts h2 {
	font-size: 13pt;
}
