/**
 * EasyZoom core styles
 */
.easyzoom {
	position: relative;

	/* 'Shrink-wrap' the element */
	display: inline-block;
	*display: inline;
	*zoom: 1;
}

.easyzoom img {
	vertical-align: bottom;
}

.easyzoom.is-loading img {
	cursor: progress;
}

.easyzoom.is-ready img {
	cursor: crosshair;
}

.easyzoom.is-error  img {
	cursor: not-allowed;
}

.easyzoom-notice {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 150;
	width: 10em;
	margin: -1em 0 0 -5em;
	line-height: 2em;
	text-align: center;
	background: #FFF;
	box-shadow: 0 0 10px #888;
}

.easyzoom-flyout {
	position:absolute;
	z-index: 100;
	overflow: hidden;
	background: #FFF;
}

/**
 * EasyZoom layout variations
 */
.easyzoom--overlay .easyzoom-flyout {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	
}

.easyzoom--adjacent .easyzoom-flyout {
	top: 0;
	left: 100%;
	width: 100%;
	height: 100%;
	margin-left: 20px;
}
.container1 {
	width: 100%;
	min-height: 520px;
	height: auto;
	margin: 0 auto;
	padding: 1em 1em 1em 0em;
	background: #fff;
	box-shadow: 0 0 5em rgba(0, 0, 0, .1);
}

.container1 section + section {
	margin-top: 3em;
	border-top: 1px solid #ccc;
	padding-top: 1em;
}

.thumbnails {
	overflow: hidden;
	overflow-y: auto;
	
	max-height: 420px;
	scrollbar-width: thin;
	padding: 0 5px 0 0;
	text-align: center;
}

.thumbnails li {
	
	display:list-item;
	border: 1px dotted lightgray;
	margin: 10px 0px;
}

.thumbnails img {
	display: block;
	min-width: 100%;
	max-width: 100%;
	margin: 0;
}

.toggle {
	display: block;
	margin: 10px auto 1.5em;
}

