/* --- viewport configuration ---------------------------------------------------------- */
.viewport {
	
}

/* This is so that the 2nd thumbnail in each row fits snugly. You will want to add a similar
           class to the last thumbnail in each row to get rid of the margin-right. */
.no-margin {
	margin-right: 0;
}

/* --- Link configuration that contains the image and label ----------------------------- */
.viewport a {
	display: block;
	position: relative;
}

.viewport a img {
	height: 230px;
	width: 250px;
	border: 2px solid #ccc;
	margin: 0 auto;
	padding:0px;
}

/* --- Label configuration -------------------------------------------------------------- */
.viewport a span {
	display: none;
	visibility: hidden;
	font-size: 1.3em;
	font-weight: bold;
	position: absolute;
	text-align: center;
	vertical-align:middle;
	text-decoration: none;
	height: 140px;
	width: 260px;
	z-index: 100;
	top:0px;
	left:0px;
	
	padding-top:100px;
	
	
}

.viewport a span em {
	display: block;
	font-size: 0.65em;
	font-weight: normal;
}

/* --- Dark hover background ------------------------------------------------------------ */
.dark-background {
	background-color: rgba(15, 15, 15, 0.6);
	color: #fff;
	text-shadow: #000 0px 0px 20px;
}

.dark-background em {
	color: #ccc;
}

/* --- Light hover background ----------------------------------------------------------- */
.light-background {
	background-color: rgba(255, 255, 255, 0.6);
	color: #333;
	text-shadow: #fff 0px 0px 20px;
}

.light-background em {
	color: #707070;
}