html, body {
	margin: 0px;
	padding: 0px;
	overflow: hidden;
}

.image-scroller-container {
	width: 570px;
	height: 500px;
	position: absolute;
	overflow: hidden;
	background: #000;
}
.image-scroller-image {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 1;
	overflow: hidden;
}
.image-scroller-drag {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: 2;
	background: url(../images/blank.gif);
}

.fullsize .image-scroller-drag {
	cursor: url(../images/scroller/openhand.cur), url(images/scroller/openhand.cur), default;
}
.dragging .image-scroller-drag {
	cursor: url(../images/scroller/closedhand.cur), url(images/scroller/closedhand.cur), default;
}

.image-scroller-down, .image-scroller-up {
	height: 36px;
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	cursor: pointer;
}
.image-scroller-down {
	top: auto;
	bottom: 0px;
}
.image-scroller-up {
	background: url(../images/scroller/arrow-up.png) center top no-repeat;
}
.image-scroller-up:hover {
	background-position: center -169px;
}
.image-scroller-down {
	background: url(../images/scroller/arrow-down.png) center bottom no-repeat;
}
.image-scroller-down:hover {
	background-position: center 5px;
}

.image-scroller-zoom-in, .image-scroller-zoom-out {
	position: absolute;
	top: 230px;
	right: 0px;
	height: 40px;
	font-size: 1px;
	text-indent: -3000px;
	width: 50px;
}
.image-scroller-zoom-in a, .image-scroller-zoom-out a {
	display: block;
	float: right;
	width: 50px;
	height: 40px;
	background: url(../images/scroller/zoom-in.png) center 5px no-repeat;
	border: none !important;
}
.image-scroller-zoom-out a {
	background-image: url(../images/scroller/zoom-out.png);
}
.image-scroller-zoom-in a:hover, .image-scroller-zoom-out a:hover {
	background-position: center -45px;
}

.image-scroller-zoom-in span, .image-scroller-zoom-out span {
	position: absolute;
	top: 0px;
	left: -80px;
	height: 40px;
	display: block;
	background: red;
	width: 80px;
	background: url(../images/scroller/zoom-in-tip.png) right center no-repeat;
}
.image-scroller-zoom-out span {
	background-image: url(../images/scroller/zoom-out-tip.png);
}





