.ienlarger { /* thumb container */
	display:inline-block; /* can be float:right */
	padding:10px 10px 5px 10px; /* space between thumbs and wrapping text (if there is any text) */
	cursor:pointer;
	position:relative;
}
.thumb { /* thumb options */
	padding:3px;
	background-color:#FFF;
	border:1px solid #000;
	width:150px;
	height:110px;
	border:1px solid #000;
	border-radius:8px;
}
.ienlarger span {  /* popup image and caption */
	position:absolute;
	visibility:hidden;
	color: #CCC;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	background-color: #000;
	font-weight: bold;
	padding:10px 10px 13px 10px;
	border-radius:10px;
	top: -8px;
	left:-15px;
}
.ienlarger:hover span { /* popup visibility toggle */
	visibility:visible;
	z-index:5;
}
.trigger img { /* popup image size */
	width:190px;
	height:140px;
	border-radius:8px;
}
.hidden{
	position:absolute;
}
.hidden span { /* large image/caption container */
	position:fixed;
	left:15%;
	top:20px;
	margin:1em auto;
	color:#FFF;
	background-color:#000; /* fallback for older IEs */
	background-color:rgba(0, 0, 0, 0.8);
	width:70%;
	height:80%;
	min-height:600px;
	max-height:950px;
	min-width:700px;
	padding-top:8%;
	border-radius:15px;
	z-index:10;
}
.hidden img { /* large image options */
	max-width:700px;
	max-height:600px;
	border:3px solid #000;
	border-radius:8px;
}
.next, .prev {
	color:#CCC;
	font-size:18px;
	font-weight:bold;
	cursor:pointer;
}
.next:hover, .prev:hover { color:#69F; }
.btns {
	top:88%;
	left:40%;
	position:absolute;
}
