#canvas {
	background-color: #000;
	cursor: move;
	width: 100%;
	height: 100%;
}

#canvas_container {
	position: relative;
}

#imagezoom_menu {
	position: absolute;
	top: 0;
	right: 0;
	margin: 10px 10px 0px 0px;
	moz-user-select: -moz-none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.imagezoom_info {
	color: #FFF;
	background-color: rgba(0, 0, 0, 0.8);
	position: fixed;
	bottom: 20px;
	text-align: center;
	padding: 0px 10px 5px 10px;
	left: 50%;
	transform: translate(-50%, 0%);
	border-radius: 5px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 70%;
}

.imagezoom_button {
	border: none;
	font-size: 25px;
	color: white;
	margin: 0px 8px 0px 8px;
	padding: 0;
	vertical-align: middle;
	text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

button:hover.imagezoom_button, button:focus.imagezoom_arrow, button:hover.imagezoom_arrow {
	color: #AAA;
}

.imagezoom_arrow {
	border: none;
	padding: 0;
	margin: 0;
	color: #FFF;
	font-size: 35px;
	transform: translate(0%, -50%);
	position: absolute;
	top: 50%;
}

.imagezoom_caption {
	color: #FFF;
	text-decoration: none;
}

a:hover.imagezoom_caption {
	color: #CCC;
}

#imagezoom_title {
	cursor: pointer;
	font-size: 20px;
}

#imagezoom_description {
	font-size: 12px;
	overflow: hidden;
	text-overflow: ellipsis;
}

