#zoom {
	z-index: 10000;
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";
}
#zoom .imgcontent {
	z-index: 10001;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 25rem;
	height: 25rem;
	background: #ffffff no-repeat 50% 50%;
	padding: 0;
	margin: -100px 0 0 -100px;
	box-shadow: -20px 20px 20px rgba(0, 0, 0, 0.3);
	border-radius: 4px;
}
#zoom .imgcontent.loading-view {
	background-image: url('../img/loading.gif');
}
#zoom img {
	display: block;
	max-width: none;
	background: #ececec;
	box-shadow: 0 1px 3px rgba(0,0,0,0.25);
	border-radius: 4px;
}
#zoom .close {
	z-index: 10005;
	text-align: center;
    font-size: 3rem;
	position: absolute;
	color:#FFF;
	opacity: .8;
	top: 0;
	right: 0;
	width: 2.5rem;
	cursor: pointer;
}
#zoom .previous,
#zoom .next {
    font-size: 3rem;
    text-align: center;
	z-index: 10002;
	position: absolute;
	top: 50%;
	overflow: hidden;
	display: block;
	width: 2.5rem;
}
#zoom .previous {
	left: 0;
}
#zoom .next {
	right: 0;
}
