* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	line-height: 1.4;
}

h3 {
	font-size: 140%;
}

ul {
	list-style: circle;
	list-style-position: inside;
}

ul li,p,h6,h3 {
	margin-bottom: 12px;
}

#wrapper {
	width: 98%;
	margin: 0 auto;
	margin-top: 1%;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}

.lightgallery {
	position: relative;
	display: inline-block;
	cursor: pointer;
}

.overview {
	padding-bottom: 60px;
}

/*----------------------------------*/

/*FADE IN: OPACITY*/

.imgThumbnailCaption {
	position: absolute;
	left: 0;
	top: 0;
	padding: 6px;
	background: rgba(0,0,0,0.3);

	font-weight: bold;
	text-transform: uppercase;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
	padding: 10px;
	font-size: 120%;
	opacity: 0;
	color: rgba(255,255,255,0.8);
	text-align: center;

	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	-ms-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}

.imgThumbnailCaption:hover {
	opacity: 1;

	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	-ms-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out; /*fallback*/
}


/*CLOSING SLIDE UP WITH BORDER TOP*/

/*----------------------------------*/

/*TEXT MOVING DOWN*/
.imgThumbnailCaption7 {
	position: absolute;
	left: 0;
	top: 0;
	font-weight: bold;
	font-size: 100%;
	text-align: center;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
	padding: 10px;
	color: rgba(255,255,255,0.9); /*fallback*/
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out; /*fallback*/
	background: rgba(0,0,0,0.5); /*fallback*/
	width:100%;height:100%;
}

.lightgallery:hover .imgThumbnailCaption7 {
	opacity: 1;
	padding-top: 34px;
}

